mirror of
https://github.com/sstent/FitTrack_GarminSync.git
synced 2026-01-25 16:41:41 +00:00
11 lines
240 B
Bash
Executable File
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}
|