Files
tldr/pages.zh/common/heroku.md

28 lines
524 B
Markdown
Raw Permalink 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}}`