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.
- Host: GitHub
- URL: https://github.com/sswapnil2/django-quiz-app
- Owner: sswapnil2
- Created: 2018-07-28T06:26:59.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-11-30T20:17:59.000Z (over 3 years ago)
- Last Synced: 2023-11-07T18:16:43.838Z (over 2 years ago)
- Topics: django, python3, quizapp
- Language: Python
- Size: 95.7 KB
- Stars: 105
- Watchers: 8
- Forks: 71
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# django-quiz-app
It is django based quiz app for multiple choice questions.
### Snaps of project
Login:

quiz:

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)