#!/bin/sh# Add /usr/games to PATH so stockfish can be foundexport PATH=$PATH:/usr/games
echo"Starting backend server..."# Start the backend server (this will serve both the API and the frontend)exec python -m uvicorn app:app --host 0.0.0.0 --port 8000