Files
js_tool_clone/panel/ecosystem.config.js
root e9d164c703 .
2021-07-05 01:09:48 -04:00

16 lines
297 B
JavaScript
Executable File

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,
},
},
],
};