feat: Initial commit of FitTrack_GarminSync project

This commit is contained in:
2025-10-10 12:20:48 -07:00
parent d0e29fbeb4
commit 18f9f6fa18
229 changed files with 21035 additions and 42 deletions

30
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,30 @@
version: '3.8'
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "8001:8001"
volumes:
- ./backend:/app
environment:
- API_PORT=8001
- CENTRAL_DB_URL=http://central_db:8000
command: uvicorn src.main:app --host 0.0.0.0 --port 8001 --reload
depends_on:
- central_db
networks:
- fittrack-network
central_db:
image: fittrack_centraldb_api
ports:
- "8000:8000"
networks:
- fittrack-network
networks:
fittrack-network:
driver: bridge