Open uniquejava opened 7 years ago
加入以下配置以便heroku能够识别你的代码所需的运行环境, ~表示请使用最新的patch版本(使用4.6和2.15分支上的最新代码)
"engines": {
"node": "~4.6.2",
"npm": "~2.15.11"
},
在项目根目录下新建Procfile
文件,内容: web: npm start
, 然后在Terminal执行命令heroku local web
, 然后通过http://localhost:5000 访问网站首页.
heroku create (会创建一个远程仓库,相当于执行了git remote add heroku xxxx) git push heroku master(上传代码在heroku)
Heroku uses the concept of dynos for running and scaling an application. The more dynos you have, the more system resources and processes you have available to your application.
heroku ps:scale web=1 (heroku免费给你一个dyno, 足够了)
heroku open(打开浏览器)
heroku open
会使用浏览器中打开首页, 比如https://dry-plains-68454.herokuapp.com
heroku local
has replacedforeman