aboutsummaryrefslogtreecommitdiff
path: root/bridge/ecosystem.config.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2023-07-02 08:22:55 +0300
committerGravatar Vitaly Takmazov2023-07-02 08:42:12 +0300
commitec805392cbb2e91b107e0203b250db6ba08644ba (patch)
treec301a4e818852169c23a98d6f57cf69e0e3b679a /bridge/ecosystem.config.js
parent813d37ff165f4bfb130529663ae7a2290053a604 (diff)
bridge: slimmed-down oembed server
Diffstat (limited to 'bridge/ecosystem.config.js')
-rw-r--r--bridge/ecosystem.config.js12
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',
+ }
+ }]
+ }