diff options
author | IRONM00N <IRONM00N@users.noreply.github.com> | 2021-05-27 19:40:19 -0400 |
---|---|---|
committer | IRONM00N <IRONM00N@users.noreply.github.com> | 2021-05-27 19:40:19 -0400 |
commit | 942c3b44deda0b1749fb50d4f66e62eec62fa0cd (patch) | |
tree | 48a485045132e45622ef7252583590a652ad1596 /ecosystem.config.js | |
parent | 3fe86257c65a067221675737559a2c0aaa5b9806 (diff) | |
download | tanzanite-942c3b44deda0b1749fb50d4f66e62eec62fa0cd.tar.gz tanzanite-942c3b44deda0b1749fb50d4f66e62eec62fa0cd.tar.bz2 tanzanite-942c3b44deda0b1749fb50d4f66e62eec62fa0cd.zip |
pm2 stuff
Diffstat (limited to 'ecosystem.config.js')
-rw-r--r-- | ecosystem.config.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..2e4b063 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,16 @@ +module.exports = { + 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' + } + } + ] +}; |