Having a gitignore-everything ("*") file within a flask session folder seems to cause a weird bug where the state of the app becomes unusable from continuously trying to prune files listed in the gitignore (and it can't prune '*').
15 lines
133 B
Plaintext
15 lines
133 B
Plaintext
venv/
|
|
.idea/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pem
|
|
config.json
|
|
test/static
|
|
flask_session/
|
|
app/static/config
|
|
|
|
# pip stuff
|
|
build/
|
|
dist/
|
|
*.egg-info/
|