#!/bin/bash # Startup script for Project Kempe Fantasy Hockey Backend cd "$(dirname "$0")" echo "==========================================" echo "Project Kempe - Fantasy Hockey Backend" echo "==========================================" echo "" echo "Starting FastAPI server..." echo "Server will be available at: http://localhost:8000" echo "API Documentation: http://localhost:8000/docs" echo "" echo "Press Ctrl+C to stop the server" echo "" # Start the server using python module python3 -m uvicorn src.presentation.api.main:app --reload --host 0.0.0.0 --port 8000