mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
28 lines
562 B
JSON
28 lines
562 B
JSON
{
|
|
"apps" : [{
|
|
"name" : "API",
|
|
"script" : "app.js",
|
|
"env": {
|
|
"NODE_ENV": "production",
|
|
"AWESOME_SERVICE_API_TOKEN": "xxx"
|
|
}
|
|
}, {
|
|
"name" : "WEB",
|
|
"script" : "web.js"
|
|
}],
|
|
"deploy" : {
|
|
"production" : {
|
|
"user" : "node",
|
|
"host" : "212.83.163.1",
|
|
"repo" : "git@github.com:repo.git",
|
|
"path" : "/var/www/production"
|
|
},
|
|
"dev" : {
|
|
"user" : "node",
|
|
"host" : "212.83.163.1",
|
|
"repo" : "git@github.com:repo.git",
|
|
"path" : "/var/www/development"
|
|
}
|
|
}
|
|
}
|