This commit is contained in:
root
2020-05-07 09:05:20 +08:00
commit e9d164c703
86 changed files with 11584 additions and 0 deletions

15
panel/ecosystem.config.js Executable file
View File

@ -0,0 +1,15 @@
module.exports = {
apps: [
{
name: 'server',
script: './server.js',
watch: ['server.js'],
// Delay between restart
watch_delay: 2000,
ignore_watch: ['node_modules', 'public'],
watch_options: {
followSymlinks: false,
},
},
],
};