25 lines
411 B
Plaintext
25 lines
411 B
Plaintext
# Local Python environment and caches
|
|
.venv/
|
|
__pycache__/
|
|
*.py[cod]
|
|
.pytest_cache/
|
|
|
|
# Local editor and operating-system files
|
|
.vscode/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Local secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Downloaded and generated climate datasets are too large for Git.
|
|
# Keep only the assets required by the browser application.
|
|
data/*
|
|
!data/climate-data.csv
|
|
!data/geojson-counties-fips.json
|
|
|
|
# Runtime logs
|
|
*.log
|