Skip to content

Instantly share code, notes, and snippets.

@hoffm386
Created October 1, 2019 19:28
Show Gist options
  • Save hoffm386/d89c1bfef67fd33f6770d206af6e6f10 to your computer and use it in GitHub Desktop.
Save hoffm386/d89c1bfef67fd33f6770d206af6e6f10 to your computer and use it in GitHub Desktop.
Example configuration file for deploying a Flask app on Glitch
{
"install": "pip3 install --user -r pip-requirements.txt",
"start": "PYTHONUNBUFFERED=true python3 app.py",
"watch": {
"ignore": [
"\\.pyc$"
],
"install": {
"include": [
"pip-requirements.txt"
]
},
"restart": {
"include": [
"\\.py$"
]
},
"throttle": 1000
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment