Skip to content

Instantly share code, notes, and snippets.

@jonnywyatt
Created July 27, 2017 14:05
Show Gist options
  • Save jonnywyatt/9d4e95eff77562fa65c0f7ceb0bcfaea to your computer and use it in GitHub Desktop.
Save jonnywyatt/9d4e95eff77562fa65c0f7ceb0bcfaea to your computer and use it in GitHub Desktop.
module.exports = {
apps: [
{
name: "app-b2b-marketplace",
script: "./app-b2b-marketplace/dist/server/index.js",
watch: true,
cwd: "./app-b2b-marketplace",
env: {
"SERVICE_ENV": "local",
"NODE_ENV": "development"
}
},
{
name: "service-b2b-marketplace",
script: "./service-b2b-marketplace/index.js",
cwd: "./service-b2b-marketplace",
watch: true,
node_args: ["--harmony"],
env: {
"SERVICE_ENV": "local",
"NODE_ENV": "development"
}
},
{
name: "app-cow-publisher",
script: "./app-cow-publisher/dist/server/index.js",
cwd: "./app-cow-publisher",
watch: true,
env: {
"SERVICE_ENV": "local",
"NODE_ENV": "development"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment