Initialize FishIQ development foundation

This commit is contained in:
reaper
2026-08-28 10:56:14 -05:00
commit 3eb459a307
81 changed files with 1642 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
# FishIQ
FishIQ is an intelligent fishing companion: trip planning, condition-aware recommendations, personal tackle, catch history, and the Professor Finn conversational guide.
## First vertical slice
Lake Eufaula → largemouth bass → Saturday morning → conditions → recommended setup → ask Professor Finn.
## Start locally
1. Copy `.env.example` to `.env`.
2. Run `docker compose up --build`.
3. Open the web app at http://localhost:5173 and the API at http://localhost:8000/api/health/.
The initial API exposes health, water-body, species, trip, and recommendation endpoints. Seed data is created with:
```bash
docker compose exec api python manage.py seed_demo
```
See `docs/ROADMAP.md` for milestones and `docs/ARCHITECTURE.md` for boundaries.