04-28 16:51
Notice
Recent Posts
Recent Comments
«   2024/04   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
Archives
Today
Total
관리 메뉴

군구마의 블로그

How to shutdown an app deployed on Heroku? 본문

카테고리 없음

How to shutdown an app deployed on Heroku?

군구마 2023. 10. 19. 14:39
320x100

# Method 1 : Using commands

 

heroku app restart

$ heroku restart

heroku app stop

$ heroku ps:scale web=0

heroku app start

$s heroku ps:scale web=1

 

# Method 2 : Simple steps from the Heroku Web -> Resource

 

heroku app stop &heroku  app start 

 

step 1.

step 2. and step3.

 

# Method 3 : Simple steps from the Heroku Web -> Settings

 

heroku app stop & heroku  app start 

 

# View logs

heroku logs --tail -a "app name"

 

320x100
Comments