在Heroku中部署Go应用,如果runner在文件夹/模块中,可以按照以下步骤进行操作:
web: go run main.go
这里假设你的入口文件为main.go,如果不是,请将命令替换为正确的启动命令。
vendor/
git init
git add .
git commit -m "Initial commit"
heroku create
git push heroku master
heroku ps:scale web=1
heroku open
以上是在Heroku中部署Go应用的基本步骤。在部署过程中,Heroku会自动检测你的应用类型,并为其分配相应的资源。如果你的应用需要使用数据库或其他服务,可以通过Heroku的插件系统进行配置和管理。
领取专属 10元无门槛券
手把手带您无忧上云