System Grab Bag

View all TLDR pages from common (or from all pages)

heroku

Create and manage Heroku apps. More information: https://www.heroku.com/.
  • Log in to your Heroku account:
    heroku login
  • Create a Heroku app:
    heroku create
  • Show logs for an app:
    heroku logs --app {{app_name}}
  • Run a one-off process inside a dyno (Heroku virtual machine):
    heroku run {{process_name}} --app {{app_name}}
  • List dynos (Heroku virtual machines) for an app:
    heroku ps --app {{app_name}}
  • Permanently destroy an app:
    heroku destroy --app {{app_name}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.