WebDev-IIITH / Game-Of-Codes

Quizzing website for club
0 stars 1 forks source link

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