16 lines
257 B
JavaScript
16 lines
257 B
JavaScript
module.exports = {
|
|
apps: [{
|
|
name: 'harheimertc',
|
|
script: 'npm',
|
|
args: 'run start',
|
|
instances: 1,
|
|
autorestart: true,
|
|
watch: false,
|
|
max_memory_restart: '1G',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3100
|
|
}
|
|
}]
|
|
}
|