This is a lightweight and deployable FastAPI backend — designed to power chess-related features, like board state analysis, move generation, and more (coming soon).
Follow these steps to get this API running locally.
git clone https://github.com/your-username/DeezChess-API.git
cd DeezChess-API
python -m venv venv
On Windows:
venv\Scripts\activate
On macOS/Linux
source venv/bin/activate
pip install -r requirements.txt
uvicorn app.main:app --reload
The API will start at: http://127.0.0.1:8000 Swagger UI (interactive API docs): http://127.0.0.1:8000/docs