mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Seth Falco <seth@falco.fun> Co-authored-by: Patrice Denis <patricedenis@users.noreply.github.com>
28 lines
529 B
Markdown
28 lines
529 B
Markdown
# heroku
|
|
|
|
> Create and manage Heroku apps from the command-line.
|
|
> 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}}`
|