Skip to content

Instantly share code, notes, and snippets.

@SOSANA
Created February 22, 2017 21:52
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 SOSANA/b5226556beaa7e1d4ec77fa717990fb3 to your computer and use it in GitHub Desktop.
Save SOSANA/b5226556beaa7e1d4ec77fa717990fb3 to your computer and use it in GitHub Desktop.
nodemon config
{
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules"
],
"verbose": true,
"events": {
"restart": "osascript -e 'display notification \"App restarted due to:\n'$FILENAME'\" with title \"nodemon\"'"
},
"watch": [
"./*.js",
"server",
"public",
"test"
],
"env": {
"NODE_ENV": [
"development",
"test"
]
},
"ext": "js json"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment