Created
August 25, 2018 20:33
-
-
Save chrisvogt/1eb98dec59106a20ce803fca6455e25f to your computer and use it in GitHub Desktop.
PM2 ecosystem file for js-personal-api
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
module.exports = { | |
apps: [{ | |
name: 'js-personal-api', | |
script: 'npm', | |
args: 'start', | |
env: { | |
NODE_ENV: 'dev', | |
}, | |
env_production: { | |
NODE_ENV: 'production', | |
}, | |
}], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment