chore: initial checkpoint - Tesla Roadtrip planner

- Proactive Grok integration (xAI API + local CLI fallback)
- Real road routing via OSRM (no more bird's-eye lines)
- Heavy structured logging for fast iteration
- Strong sanitization + geocoding + ErrorBoundary (no black screens)
- Playwright E2E tests (API diagnostic + full UI flow)
- scripts/dev.sh for one-command startup
- Clean .env.example + documentation

This is a stable checkpoint before further prompt/UI refinement.
This commit is contained in:
2026-05-15 19:24:35 +01:00
commit d516e93323
29 changed files with 11927 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# Dev override for tesla-roadtrip.test
services:
app:
build:
target: development
command: ["npm", "run", "dev"]
volumes:
- ./server:/app/server
- ./prisma:/app/prisma
labels: !reset {}
frontend:
build:
target: development
command: ["npm", "run", "dev"]
volumes:
- ./client:/app/client
labels:
- "caddy=tesla-roadtrip.test"
- "caddy.reverse_proxy=/api/* app:3000"
- "caddy.reverse_proxy=/* {upstream http://frontend:5173}"