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

10
backend/entrypoint.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Exit immediately if a command exits with a non-zero status.
set -e
# Run database migrations (if any)
# alembic upgrade head
# Start the FastAPI application
exec uvicorn src.main:app --host 0.0.0.0 --port ${API_PORT:-8001}