Files

23 lines
767 B
Markdown
Raw Permalink Normal View History

2026-08-28 10:56:14 -05:00
# 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.