35 lines
403 B
Text
35 lines
403 B
Text
# Secrets and local configuration
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!.env.*.example
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.venv/
|
|
venv/
|
|
|
|
# Flask/runtime data
|
|
instance/
|
|
app_new/instance/
|
|
uploads/
|
|
app_new/uploads/
|
|
*.log
|
|
*.pid
|
|
|
|
# Databases and exports containing operational data
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.sql
|
|
*.dump
|
|
|
|
# Editors and operating systems
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
Thumbs.db
|