-
egg-scripts是一款用于部署鸡蛋项目的工具
资源介绍
蛋本
部署鸡蛋项目的工具。
注意:部分支持Windows,请参阅
安装
$ npm i egg-scripts --save
用法
将eggctl添加到package.json脚本中:
{
" scripts " : {
" start " : " eggctl start --daemon " ,
" stop " : " eggctl stop "
}
}
然后运行为:
npm start
npm stop
注意:不建议在全球范围内安装egg-scripts ,您应该将其安装并用作npm脚本。
命令
开始
在生产模式下启动鸡蛋。
$ eggctl st