mirror of
https://github.com/lan-tianxiang/JS_TOOL.git
synced 2025-07-13 13:52:36 +08:00
16 lines
297 B
JavaScript
Executable File
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,
|
|
},
|
|
},
|
|
],
|
|
};
|