Draughts or checkers is a group of strategy board games for two players which involve diagonal moves of uniform game pieces and mandatory captures by jumping over opponent pieces.
- Fully responsive design
- Custom size of the board
You can see it in action right here.
Clone repository, set up python virtual environment and install dependencies:
$ cd checkers
$ virtualenv -p python3 venv
$ . venv/bin/activate
$ pip install -r requirements.txt
$ python run.py
To create a new requirements file from a known working environment, use:
$ pip freeze > requirements.txt
To run tests on your local machine type:
$ python setup.py test