Skip to content

Instantly share code, notes, and snippets.

@1yx
Created February 21, 2017 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1yx/33e0f30a61b4faf31414c5433d9563b5 to your computer and use it in GitHub Desktop.
Save 1yx/33e0f30a61b4faf31414c5433d9563b5 to your computer and use it in GitHub Desktop.
pm2 cron restart demo
module.exports = {
apps : [
{
name: 'pm2cron',
script: 'index.js',
exec_mode: 'fork',
instance: 1,
cron_restart: '* * * * *'
}]
}
console.log('start');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment