/checkers

Checkers game powered by Flask microframework

Primary LanguagePython

Checkers

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.

Game features

  • Fully responsive design
  • Custom size of the board

Demo

You can see it in action right here.

Development

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

Tests

https://circleci.com/gh/rafaltrzop/checkers.svg?style=svg

To run tests on your local machine type:

$ python setup.py test