Skip to content

Instantly share code, notes, and snippets.

@chrisvogt
Created August 25, 2018 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisvogt/1eb98dec59106a20ce803fca6455e25f to your computer and use it in GitHub Desktop.
Save chrisvogt/1eb98dec59106a20ce803fca6455e25f to your computer and use it in GitHub Desktop.
PM2 ecosystem file for js-personal-api
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