An open API service indexing awesome lists of open source software.

https://github.com/sswapnil2/django-quiz-app

It is django based quiz app for multiple choice questions.
https://github.com/sswapnil2/django-quiz-app

django python3 quizapp

Last synced: 4 months ago
JSON representation

It is django based quiz app for multiple choice questions.

Awesome Lists containing this project

README

          

# django-quiz-app
It is django based quiz app for multiple choice questions.

### Snaps of project
Login:
![alt text](https://github.com/sswapnil2/django-quiz-app/blob/master/screenshots/login.png "login page")



quiz:
![alt text](https://github.com/sswapnil2/django-quiz-app/blob/master/screenshots/quiz_page.png "quiz page")



results:
![alt text](https://github.com/sswapnil2/django-quiz-app/blob/master/screenshots/results.png "results")



# Instructions

1) ### Installations
Make sure to have python version 3 install on you pc or laptop.
If not install it from [here](https://www.python.org)

**Clone repository**

`https://github.com/sswapnil2/django-quiz-app.git`

`cd django-quiz-app`

2) ### Installing dependencies
It will install all required dependies in the project.

`pip install -r requirements.txt`

3) ### Migrations
To run migrations.

`python manage.py makemigrations`

`python manage.py migrate`

4) ### Create superuser
To create super user run.

`python manage.py createsuperuser`

After running this command it will ask for username, password.
You can access admin panel from `localhost:8000/admin/`

4) ### Running locally
To run at localhost. It will run on port 8000 by default.

`python manage.py runserver`

5) ### Reference
I have refernced this quizz app from [tomwalker's](https://github.com/tomwalker) original repo.
Reference link to the quiz app repo is [here](https://github.com/tomwalker/django_quiz)