Skip to content

SgtSwagrid/boards-2.0

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Boards 2.0

This project is superseded by: https://github.com/SgtSwagrid/Boards

Boards is an online platform for the design and testing of game playing bots. With an assortment of abstract strategy board games available, Boards is able to facilitate gameplay featuring any combination of human and computer-controlled players.

Installation

Requirements:

virtualenv .
.\Scripts\activate
pip install channels_redis
pip install mysqlclient
pip install python-dotenv
pip install django-mathfilters

/boards/boards/.env:

SECRET_KEY=...
DB_NAME=...
DB_USER=...
DB_PASSWORD=...

Execution

.\Scripts\activate
docker run -p 6379:6379 -d redis:5
python manage.py migrate
python manage.py runserver