Testing / nodemon.json
Sidak Singh
question boundary works
7b7db64
raw
history blame contribute delete
393 Bytes
{
"watch": ["*.py", "**/*.py"],
"ext": "py",
"ignore": [
"__pycache__/",
"*.pyc",
".git/",
"node_modules/",
"venv/",
"env/",
".pytest_cache/",
"*.log"
],
"exec": "python3 app.py",
"env": {
"PYTHONPATH": ".",
"PYTHONUNBUFFERED": "1"
},
"delay": 1000,
"verbose": true,
"restartable": "rs",
"colours": true,
"legacy-watch": false
}