From 32bcddc8b4935584a2e30ae1d6c3322d58b18aed Mon Sep 17 00:00:00 2001 From: Michel Blancard Date: Sun, 29 Oct 2017 18:37:59 +0100 Subject: [PATCH] Add PM2 config --- ecosystem.config.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ecosystem.config.js diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..0dde3fc --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,13 @@ +module.exports = { + apps : [ + { + name : 'better-place', + script : 'bin/www', + env: { + }, + env_production : { + NODE_ENV: 'production', + }, + }, + ], +};