Files
nuzlocke-tracker/.gitignore
TheFurya 63bb3a0394
All checks were successful
CI / backend-lint (push) Successful in 7s
CI / frontend-lint (push) Successful in 29s
Remove old Go fetch-pokeapi tool, update README for import-pokedb (#13)
The Go tool in tools/fetch-pokeapi/ has been fully replaced by the
Python import-pokedb tool. Removes all Go source files, updates the
README seed regeneration docs, and cleans up the .gitignore entry.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

Co-authored-by: Julian Tabel <julian.tabel@synvert.com>
Reviewed-on: TheFurya/nuzlocke-tracker#13
2026-02-11 13:55:38 +01:00

70 lines
642 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/
# Local config overrides
*.local