Skip to content

Instantly share code, notes, and snippets.

@kamerk22
Last active July 26, 2017 18:55
Show Gist options
  • Save kamerk22/a2b8be8a38055306ce4991fefdea6585 to your computer and use it in GitHub Desktop.
Save kamerk22/a2b8be8a38055306ce4991fefdea6585 to your computer and use it in GitHub Desktop.
Process FIle pm2
{
"apps" : {
"name" : "vuejs",
"script" : "./server.js",
"watch" : true,
"instances" : 4,
"exec_mode" : "cluster",
"env": {
"COMMON_VARIABLE": "true"
},
"env_production" : {
"NODE_ENV": "production"
},
"env_develpomemt" : {
"NODE_ENV": "development"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment