All checks were successful
Continuous Deployment / Update Deployment (push) Successful in 2m15s
allow automatic naming of started process based on environment
16 lines
336 B
JavaScript
16 lines
336 B
JavaScript
module.exports = {
|
|
apps : [{
|
|
name: '17th-api',
|
|
cwd: 'api',
|
|
script: 'built/api/src/index.js',
|
|
watch: ['.env', 'built'],
|
|
ignore_watch: ['.gitignore', '\.json', 'src', '\.db', 'node_modules'],
|
|
appendEnvToName: true,
|
|
watch_options: {
|
|
usePolling: true,
|
|
interval: 10000
|
|
},
|
|
time: true
|
|
}]
|
|
};
|