egg部署到heroku

2018-09-27  本文已影响0人  jhs1873

前两天学习了node部署到heroku的入门文档

出了好多框架,也看了狼叔的框架大战,最后我选择egg作为以后的学习方向
主要不想折腾,只求快速上手,能干活!

整个流程和node部署到heroku一样。
1.首先创建egg脚手架

$ npm i egg-init -g
$ egg-init egg-example --type=simple
$ cd egg-example
$ npm i

2.目录下新建文件 Procfile

web: egg-scripts start

3.创建heroku

heroku create

命令行

git init
git add .
git commit -m 'egg'
git push heroku master
heroku ps:scale web=1
heroku open

然后就出现了 hi, egg

heroku apps:rename jhs1873
heroku git:remote -a jhs1873

第一条修改远程空间的名字,第二条修改本地推送到heroku的空间名字。

上一篇下一篇

猜你喜欢

热点阅读