This commit is contained in:
2025-09-10 11:46:57 -07:00
parent 2cc2b4c9ce
commit f443e7a64e
33 changed files with 887 additions and 1467 deletions

View File

@@ -8,7 +8,8 @@ services:
ports:
- "8000:8000"
environment:
- DATABASE_URL=postgresql://postgres:password@db:5432/cycling
- DATABASE_URL=postgresql+asyncpg://postgres:password@db:5432/cycling
- GPX_STORAGE_PATH=/app/data/gpx
- GARMIN_USERNAME=${GARMIN_USERNAME}
- GARMIN_PASSWORD=${GARMIN_PASSWORD}
- OPENROUTER_API_KEY=${OPENROUTER_API_KEY}
@@ -27,9 +28,9 @@ services:
frontend:
build: ./frontend
ports:
- "3000:3000"
- "8888:80"
environment:
- REACT_APP_API_URL=http://localhost:8000
- REACT_APP_API_URL=http://backend:8000
- REACT_APP_API_KEY=${API_KEY}
db: