File size: 258 Bytes
100a6dd
 
 
 
 
d086f83
 
 
1
2
3
4
5
6
7
8
#!/bin/sh

# Add /usr/games to PATH so stockfish can be found
export 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