The Multiplayer version of Python-Hand-Cricket, using the Django framework
This website is written in Python 3 using the Django framework. HTML is used for templating. It uses MongoDB to store games as JSON documents. MongoDB connections are handled using PyMongo and Djongo. The CSS stylesheets are written into HTML <style> tags. Sessions and cached data are handled using redis. The Django admin site is not used here in favour of moderator accounts.
If you have only Python 3.x installed:
python manage.py migrate
python manage.py runserver
If you have both Python 2.x and Python 3.x installed:
python3 manage.py migrate
python3 manage.py runserver
Use localhost:8000
to open this website.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.