heroku
Create and manage Heroku apps from the command-line.
- Log in to your Heroku account:
heroku login
heroku create
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}
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).