Quizzing website for club
Install the requirements:
- virtualenv --no-site-packages --distribute venv
- source venv/bin/activate
- pip install -r requirements.txt
Entering the virtual environment
- source venv/bin/activate
Create/Sync the database:
- python manage.py makemigrations
- python manage.py migrate
Starting the server:
- python manage.py runserver [host:port]
Exiting the virtual environment
- deactivate