39 lines
514 B
Plaintext
39 lines
514 B
Plaintext
# Secrets and local runtime configuration
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
webhook.json
|
|
nowcast-geo-alarm-filter.json
|
|
|
|
# Runtime data and debug output
|
|
nowcast-geo-alarm-registrations.csv
|
|
logs/
|
|
*.log
|
|
|
|
# Python caches and virtual environments
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Test and coverage output
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
|
|
# Build and packaging output
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# Editor and operating-system files
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
Thumbs.db
|