diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-26 18:44:47 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-26 18:44:47 -0400 |
commit | 13ba1ad552047eb9386e91d542a975c4bef58b08 (patch) | |
tree | 102f10515edeff77d00d30ca342e7c8da41cc10c | |
parent | ef26d48c5767bb72721c30fe7aa75031a5f1534f (diff) | |
download | tanzanite-13ba1ad552047eb9386e91d542a975c4bef58b08.tar.gz tanzanite-13ba1ad552047eb9386e91d542a975c4bef58b08.tar.bz2 tanzanite-13ba1ad552047eb9386e91d542a975c4bef58b08.zip |
fix: ecosystem.config.json -> ecosystem.config.js
-rw-r--r-- | ecosystem.config.js | 16 | ||||
-rw-r--r-- | ecosystem.config.json | 16 |
2 files changed, 16 insertions, 16 deletions
diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..fafb528 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,16 @@ +module.exports = { + apps: [ + { + name: 'BushBot-Beta', + script: 'yarn', + args: 'start', + out_file: './combined-dev.log', + error_file: './combined-dev.log', + max_memory_restart: '2000M', + node_args: ['--max_old_space_size=2048'], + env: { + FORCE_COLOR: '3' + } + } + ] +}; diff --git a/ecosystem.config.json b/ecosystem.config.json deleted file mode 100644 index a4ba731..0000000 --- a/ecosystem.config.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "apps": [ - { - "name": "BushBot-Dev", - "script": "yarn", - "args": "start", - "out_file": "./combined-dev.log", - "error_file": "./combined-dev.log", - "max_memory_restart": "2000M", - "node_args": ["--max_old_space_size=2048"], - "env": { - "FORCE_COLOR": "3" - } - } - ] -} |