Files
api/ecosystem.config.js
T
Alexis Tyler e659681d5f add ecosystem file
Signed-off-by: Alexis Tyler <xo@wvvw.me>
2019-06-13 13:07:17 +09:30

21 lines
496 B
JavaScript

/* eslint-disable camelcase */
module.exports = {
apps: [
{
name: 'my_servers-client',
script: './index.js',
watch: false,
wait_ready: true,
listen_timeout: 3000,
env: {
PORT: 5000,
NODE_ENV: 'development'
},
env_production: {
PORT: '/var/run/my_servers-client.sock',
NODE_ENV: 'production'
}
}
]
};