module.exports = { apps: [ { name: 'zulip-bot', script: './run_app.sh', interpreter: '/bin/bash', instances: 1, autorestart: true, watch: false, max_memory_restart: '500M', env: { NODE_ENV: 'production', FLASK_APP: 'app', FLASK_RUN_PORT: 5100 }, log_date_format: 'YYYY-MM-DD HH:mm:ss', error_file: 'logs/zulip-bot-error.log', out_file: 'logs/zulip-bot-out.log', merge_logs: true, time: true } ] };