Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 519 Bytes

README.md

File metadata and controls

28 lines (16 loc) · 519 Bytes

What is this repository for?

Quizzing website for club

How do I get set up?

Install the requirements:

  1. virtualenv --no-site-packages --distribute venv
  2. source venv/bin/activate
  3. pip install -r requirements.txt

Entering the virtual environment

  1. source venv/bin/activate

Create/Sync the database:

  1. python manage.py makemigrations
  2. python manage.py migrate

Starting the server:

  1. python manage.py runserver [host:port]

Exiting the virtual environment

  1. deactivate