First, clone this project repository from GitHub to your server.
git clone https://github.com/islombeknv/chess-game.git
cd chess-gameCreate a Virtual Environment
python3 -m venv venv
source venv/bin/activate
Install the required packages using pip.
pip install -r requirements.txtApply database migrations to set up your database schema.
python manage.py migrateCreate a superuser for accessing the Django admin interface.
python manage.py createsuperuserCollect Static Files
python manage.py collectstaticExecute the tests to ensure everything is functioning correctly.
python manage.py testGenerate realistic chess game records.
python manage.py generate_games [argument]Run server to visit website and see the result.
python manage.py runserver