How to stop an app on Heroku?

后端 未结 9 977
猫巷女王i
猫巷女王i 2020-12-22 15:10

I have an app on Heroku which is being used by few users. However, I notice there are some data issues which i\'d like to fix and stop the app in the mean time so users don\

9条回答
  •  无人及你
    2020-12-22 15:23

    To completely 'stop' your app you can scale the web dynos down to zero which effectively takes all your app http-processes offline.

    $ heroku ps:scale web=0
    Scaling web processes... done, now running 0
    

提交回复
热议问题