Files
nuzlocke-tracker/.gitignore
Julian Tabel df7ea64b9e Add reference data mappings and auto-download for PokeDB import tool
Add mappings module with pokemon form, location area, encounter method,
and version mappings. Auto-download PokeDB JSON exports from CDN on
first run, caching in .pokedb_cache/.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-11 10:02:57 +01:00

72 lines
694 B
Plaintext

# Dependencies
node_modules/
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.venv/
venv/
# Build outputs
dist/
build/
out/
# Environment and secrets
.env
.env.*
!.env.example
*.pem
*.key
*.crt
credentials.json
secrets.json
*.secret
# Database
*.db
*.sqlite
*.sqlite3
# Logs
logs/
*.log
# OS files
.DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini
# Editor/IDE
.idea/
.vscode/
*.swp
*.swo
*~
*.sublime-workspace
*.sublime-project
# Test coverage
coverage/
.nyc_output/
.pytest_cache/
htmlcov/
.coverage
# Temporary files
tmp/
temp/
*.tmp
*.temp
# PokeAPI / PokeDB data cache
.pokeapi_cache/
.pokedb_cache/
# Go build output
tools/fetch-pokeapi/fetch-pokeapi
# Local config overrides
*.local