diff options
Diffstat (limited to 'bridge/ecosystem.config.js')
-rw-r--r-- | bridge/ecosystem.config.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bridge/ecosystem.config.js b/bridge/ecosystem.config.js new file mode 100644 index 00000000..40073998 --- /dev/null +++ b/bridge/ecosystem.config.js @@ -0,0 +1,12 @@ +module.exports = { + apps : [{ + name: 'bridge', + script: './bridge.js', + env: { + NODE_ENV: 'development', + }, + env_production: { + NODE_ENV: 'production', + } + }] + } |