Files
tldr/pages.zh/common/heroku.md
2021-08-31 15:13:49 +08:00

29 lines
519 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# heroku
> 从命令行创建和管理 Heroku 应用。
> 更多信息:<https://www.heroku.com/>.
- 登录到你的 heroku 帐户:
`heroku login`
- 创建一个 heroku 应用:
`heroku create`
- 显示应用的日志:
`heroku logs --app {{app_name}}`
- 在 dynoHeroku 虚拟机)中运行一次性进程:
`heroku run {{process_name}} --app {{app_name}}`
- 列出应用的 dynoHeroku 虚拟机):
`heroku ps --app {{app_name}}`
- 永久销毁应用:
`heroku destroy --app {{app_name}}`