14 lines
223 B
JavaScript
14 lines
223 B
JavaScript
module.exports = {
|
|
apps: [{
|
|
name: 'gamer',
|
|
script: 'server/app.js',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3000
|
|
},
|
|
instances: 1,
|
|
autorestart: true,
|
|
max_memory_restart: '200M'
|
|
}]
|
|
};
|