Heroku部署真的超簡單的,步驟真的很不複雜
訂閱尼桑上線囉!
▌Heroku部署
- 網站:https://dashboard.heroku.com
- 部署步驟:https://devcenter.heroku.com/articles/getting-started-with-nodejs#view-logs
heroku login
git add .
git commit -am "make it better"
git push heroku master
git push heroku master //把檔案推上去
heroku open //打開網站
▌Package.json
- 要記得告訴Heroku的engines
- 要記得告訴Heroku有什麼npm的dependencies
- 要記得告訴Heroku如何start
"engines":{
"node":"6.11.1"
},
"dependencies": {
"jquery": "^3.3.1",
"toastr": "^2.1.4"
},
"scripts": {
"start": "node express.js"
},
沒有留言:
張貼留言