Last active
July 26, 2017 18:55
-
-
Save kamerk22/a2b8be8a38055306ce4991fefdea6585 to your computer and use it in GitHub Desktop.
Process FIle pm2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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