I’ll introduce commands to restart, stop, and start Heroku apps.
Restart Heroku App
heroku restart
Stop Heroku App
heroku ps:scale web=0
Start Heroku App
heroku ps:scale web=1
For free plan usage, it’s web=1, but specify web=2 or adjust appropriately according to your environment.
That’s all from the Gemba, where I fully utilize Heroku for personal development.