mirror of
https://github.com/Gimanh/taskview-community.git
synced 2026-09-11 13:29:17 +00:00
17 lines
386 B
JavaScript
17 lines
386 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'taskview-server',
|
|
script: 'taskview-server.js',
|
|
instances: 'max',
|
|
watch: true,
|
|
ignore_watch: ['logs'],
|
|
autorestart: true,
|
|
max_memory_restart: '1G',
|
|
env_production: {
|
|
NODE_ENV: 'production',
|
|
},
|
|
},
|
|
],
|
|
};
|