mirror of
https://github.com/unraid/api.git
synced 2026-04-25 00:39:09 -05:00
e659681d5f
Signed-off-by: Alexis Tyler <xo@wvvw.me>
21 lines
496 B
JavaScript
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'
|
|
}
|
|
}
|
|
]
|
|
}; |