mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
34 lines
792 B
JSON
34 lines
792 B
JSON
{
|
|
"apps" : [{
|
|
"name" : "API",
|
|
"script" : "app.js",
|
|
"env": {
|
|
"COMMON_VARIABLE": "true"
|
|
},
|
|
"env_production" : {
|
|
"NODE_ENV": "production"
|
|
}
|
|
},{
|
|
"name" : "WEB",
|
|
"script" : "web.js"
|
|
}],
|
|
"deploy" : {
|
|
"production" : {
|
|
"user" : "node",
|
|
"host" : "212.83.163.1",
|
|
"ref" : "origin/master",
|
|
"repo" : "git@github.com:repo.git",
|
|
"path" : "/var/www/production",
|
|
"post-deploy" : "pm2 startOrRestart ecosystem.json --env production"
|
|
},
|
|
"dev" : {
|
|
"user" : "node",
|
|
"host" : "212.83.163.1",
|
|
"ref" : "origin/master",
|
|
"repo" : "git@github.com:repo.git",
|
|
"path" : "/var/www/development",
|
|
"post-deploy" : "pm2 startOrRestart ecosystem.json --env dev"
|
|
}
|
|
}
|
|
}
|