下载
mkdir /yapi
cd /yapi
git clone https://github.com/YMFE/yapi.git vendors
cp vendors/config_example.json ./config.json
修改配置文件config.json
vim config.json
安装(初始化)
cd vendors
npm install --production --registry https://registry.npm.taobao.org
node server/install.js
启动
node server/app.js
运行结果
配置Nginx代理
server {
listen 80 ;
server_name yapi.xxx.com;
location / {
proxy_pass http://127.0.0.1:3030/;
}
}
注:3030是config.js中填写的备注
安装pm2进程管理工具(让服务在后台运行)
npm install -g pm2
pm2 start app.js
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。