You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
593 B
59 lines
593 B
# Python |
|
__pycache__/ |
|
*.pyc |
|
*.pyo |
|
*.pyd |
|
.pytest_cache/ |
|
.mypy_cache/ |
|
.ruff_cache/ |
|
.coverage |
|
htmlcov/ |
|
|
|
# Virtual environments |
|
venv/ |
|
.venv/ |
|
env/ |
|
|
|
# Flask / runtime |
|
instance/*.db |
|
instance/*.sqlite |
|
instance/*.sqlite3 |
|
*.log |
|
*.pid |
|
tmp/ |
|
uploads_tmp/ |
|
|
|
# Secrets / env |
|
.env |
|
.env.* |
|
!.env.example |
|
|
|
# Build artifacts |
|
dist/ |
|
build/ |
|
*.egg-info/ |
|
|
|
# Editors / OS |
|
.vscode/ |
|
.idea/ |
|
*.swp |
|
*~ |
|
.DS_Store |
|
Thumbs.db |
|
|
|
# Backups / scratch |
|
*.bak |
|
*.old |
|
*.orig |
|
|
|
# Generated exports / tarballs |
|
exports/ |
|
tarballs/ |
|
|
|
# Android (future) |
|
android/.gradle/ |
|
android/local.properties |
|
android/app/build/ |
|
|
|
# Node (future) |
|
node_modules/
|
|
|