Add Go to .tool-versions, update .gitignore for Go build output and cache, document seed data regeneration in README, and change API port from 8000 to 8080 in docker-compose. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
71 lines
671 B
Plaintext
71 lines
671 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 fetch cache
|
|
.pokeapi_cache/
|
|
|
|
# Go build output
|
|
tools/fetch-pokeapi/fetch-pokeapi
|
|
|
|
# Local config overrides
|
|
*.local
|