35 lines
404 B
Plaintext
35 lines
404 B
Plaintext
# Ignore JetBrains project settings
|
|
.idea/
|
|
|
|
# Ignore Flask session data
|
|
flask_session/
|
|
|
|
# Ignore testing data
|
|
.pytest_cache/
|
|
|
|
# Ignore databases
|
|
data/
|
|
data/*.db
|
|
|
|
# Ignore configuration files
|
|
config/
|
|
config.py
|
|
config.yml
|
|
|
|
# Ignore virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# Ignore compiled bytecode
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# Ignore backup and log files
|
|
*.log
|
|
*.bak
|
|
|
|
# Ignore system files
|
|
.DS_Store
|
|
Thumbs.db
|