This is the Chessort Server responsible for generating games and validating solutions. It interacts with the backend database and provides a public API for consumption by apps.
- Python 3
-
Copy and Configure .env File:
- Copy the
.env.example
file to.env
:cp .env.example .env
- Populate the
.env
file with your details.
- Copy the
-
Create virtual environment:
python -m venv ./venv
-
Activate the virtual environment:
# On Windows .\venv\Scripts\activate # On Unix source venv/bin/activate
-
Install Dependencies:
pip install -r requirements.txt