Files
FitTrack_GarminSync/backend/entrypoint.sh

11 lines
240 B
Bash
Executable File

#!/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}