Skip to content

WebDev-IIITH/Game-Of-Codes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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