Created
October 1, 2019 19:28
-
-
Save hoffm386/d89c1bfef67fd33f6770d206af6e6f10 to your computer and use it in GitHub Desktop.
Example configuration file for deploying a Flask app on Glitch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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