Update project config for Go tool and port change

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>
This commit is contained in:
2026-02-07 19:44:19 +01:00
parent f57d4793f9
commit 23a7b6ad53
7 changed files with 77 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
---
# nuzlocke-tracker-338l
title: Verify fetch_pokeapi.py rewrite
status: in-progress
type: task
created_at: 2026-02-07T15:08:10Z
updated_at: 2026-02-07T15:08:10Z
---
All code changes are complete. Run verification:
1. Run the script to completion
2. Verify output (pokemon.json has forms, correct IDs, etc.)
3. Verify cache speedup on second run
4. Frontend build check
## Checklist
- [ ] Run fetch_pokeapi.py to completion
- [ ] Verify pokemon.json has more entries with forms (megas, gmax, regionals)
- [ ] Verify pokeapi_id/national_dex split is correct
- [ ] Verify route/encounter JSON files
- [ ] Verify cache speedup on second run
- [ ] Frontend build passes

View File

@@ -1,11 +1,11 @@
---
# nuzlocke-tracker-6aje
title: Update PokeAPI data submodule to latest version
status: todo
status: completed
type: task
priority: high
created_at: 2026-02-06T10:53:45Z
updated_at: 2026-02-07T13:39:12Z
updated_at: 2026-02-07T14:35:41Z
---
The local PokeAPI data repository we use as a submodule is outdated. It's missing data for newer Pokemon forms and potentially newer games.

View File

@@ -0,0 +1,11 @@
---
# nuzlocke-tracker-k60g
title: Rewrite fetch_pokeapi in Go
status: completed
type: feature
priority: normal
created_at: 2026-02-07T15:38:58Z
updated_at: 2026-02-07T15:44:25Z
---
Rewrite the Python PokeAPI fetching tool in Go with custom HTTP client, disk caching, and zero external dependencies. Replace aiopoke dependency that crashes on newer PokeAPI fields.