aboutsummaryrefslogtreecommitdiff
path: root/ecosystem.config.js
blob: fafb5280eaf227241157d56894a3c7da98f59950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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'
			}
		}
	]
};