mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
42 lines
956 B
JSON
42 lines
956 B
JSON
{
|
|
/**
|
|
* Application configuration section
|
|
* http://pm2.keymetrics.io/docs/usage/application-declaration/
|
|
*/
|
|
apps : [
|
|
|
|
// First application
|
|
{
|
|
name : "LSOR",
|
|
script : "http.js",
|
|
"exec_interpreter" : "node@4.6.0"
|
|
}
|
|
],
|
|
|
|
/**
|
|
* Deployment section
|
|
* http://pm2.keymetrics.io/docs/usage/deployment/
|
|
*/
|
|
deploy : {
|
|
production : {
|
|
user : "node",
|
|
host : "212.83.163.1",
|
|
ref : "origin/master",
|
|
repo : "git@github.com:repo.git",
|
|
path : "/var/www/production",
|
|
"post-deploy" : "npm install && 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" : "npm install && pm2 startOrRestart ecosystem.json --env dev",
|
|
env : {
|
|
NODE_ENV: "dev"
|
|
}
|
|
}
|
|
}
|
|
}
|