diff options
Diffstat (limited to 'ecosystem.config.cjs')
-rw-r--r-- | ecosystem.config.cjs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ecosystem.config.cjs b/ecosystem.config.cjs index 2c41d13..85ec54e 100644 --- a/ecosystem.config.cjs +++ b/ecosystem.config.cjs @@ -2,8 +2,8 @@ module.exports = { apps: [ { name: 'bush-bot', - script: '/bin/zsh', - args: './start.sh', + script: 'yarn', + args: 'start', out_file: '../bushbot.log', error_file: '../bushbot.log', max_memory_restart: '1G', @@ -16,8 +16,8 @@ module.exports = { }, { name: 'bush-bot-beta', - script: '/bin/zsh', - args: './start.sh', + script: 'yarn', + args: 'start', out_file: '../bushbot-beta.log', error_file: '../bushbot-beta.log', max_memory_restart: '1G', |