2016-10-16 16:25:03 +05:30
|
|
|
# heroku
|
|
|
|
|
2023-07-16 19:23:40 +02:00
|
|
|
> Create and manage Heroku apps.
|
2025-08-16 21:21:31 +03:00
|
|
|
> More information: <https://devcenter.heroku.com/articles/heroku-cli#get-started-with-the-heroku-cli>.
|
2016-10-16 16:25:03 +05:30
|
|
|
|
2021-08-15 19:59:09 +02:00
|
|
|
- Log in to your Heroku account:
|
2016-10-16 16:25:03 +05:30
|
|
|
|
|
|
|
`heroku login`
|
|
|
|
|
2021-08-15 19:59:09 +02:00
|
|
|
- Create a Heroku app:
|
2016-10-16 16:25:03 +05:30
|
|
|
|
|
|
|
`heroku create`
|
|
|
|
|
|
|
|
- Show logs for an app:
|
|
|
|
|
|
|
|
`heroku logs --app {{app_name}}`
|
|
|
|
|
2016-10-16 11:56:22 +01:00
|
|
|
- Run a one-off process inside a dyno (Heroku virtual machine):
|
2016-10-16 16:25:03 +05:30
|
|
|
|
|
|
|
`heroku run {{process_name}} --app {{app_name}}`
|
|
|
|
|
2016-10-16 11:56:22 +01:00
|
|
|
- List dynos (Heroku virtual machines) for an app:
|
2016-10-16 16:25:03 +05:30
|
|
|
|
|
|
|
`heroku ps --app {{app_name}}`
|
|
|
|
|
|
|
|
- Permanently destroy an app:
|
|
|
|
|
|
|
|
`heroku destroy --app {{app_name}}`
|