- 环境
- macOS
- git
- Golang 代码
|
|
- 前提
- 创建一个 heroku 账户
- 安装 heroku 命令行工具
- 安装 heroku 命令行
- 运行
brew install heroku/brew/heroku
命令 - 验证安装
- 运行
heroku
命令
步骤
命令行登录
运行
heroku login
命令1 2 3 4
heroku: Press any key to open up the browser to login or q to exit: Opening browser to https://cli-auth.heroku.com/auth/browser/865fec7b-8b18-4080-82c8-1fe695b1322c Logging in... done Logged in as xxx@yyyy.com
将 golang 代码所在目录初始化为 git 仓库,并提交内容
- git init
- git add
- git commit
运行
heroku create
命令,创建 heroku app ,并与远程 heroku 仓库建立链接推送本地内容到远程 heroku 仓库
- git push heroku master
坑
1 2 3 |
State changed from starting to crashed State changed from crashed to starting Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch |
- heroku 不需要你绑定固定的端口号, 它会自动绑定 $PORT 环境变量
- 可查看本文开头的代码