Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 459 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 459 Bytes

TavernGame

Game for UfoPrask Spring 2018.

Installation

First, best thing to do is create virtualenv.

Second, install Python project requirements

pip install -r requirements.txt

Run Django database migrations and populate DB from tavern_game directory.

python manage.py migrate
python manage.py populate_db

Create admin user:

python manage.py createsuperuser

And finally, run server:

python manage.py runserver