Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/24apurv/django-quiz
Quiz application created in django to create and take MCQ Quizzes
https://github.com/24apurv/django-quiz
bootstrap bootstrap4 django django-application django-framework django2 example quiz quiz-app quizapp quizapplication
Last synced: 2 months ago
JSON representation
Quiz application created in django to create and take MCQ Quizzes
- Host: GitHub
- URL: https://github.com/24apurv/django-quiz
- Owner: 24apurv
- License: mit
- Created: 2020-02-08T11:57:33.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-21T20:48:57.000Z (over 1 year ago)
- Last Synced: 2024-09-28T16:23:16.224Z (3 months ago)
- Topics: bootstrap, bootstrap4, django, django-application, django-framework, django2, example, quiz, quiz-app, quizapp, quizapplication
- Language: JavaScript
- Homepage:
- Size: 2.86 MB
- Stars: 14
- Watchers: 1
- Forks: 10
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![DeepSource](https://deepsource.io/gh/24apurv/django-quiz.svg/?label=active+issues&show_trend=true)](https://deepsource.io/gh/24apurv/django-quiz/?ref=repository-badge)
# Django Quiz Application
A quiz application created in django to conduct mcq quizzes. The application has the following features :
1) Add/update/delete questions from admin.
2) JavaScript timer
3) Random questions from set of questions
4) Production ready# Installation
1) Install python3
2) Install pip for python3
3) Install virtualenv
`pip install virtualenv` or `pip3 install virtualenv`
4) Create virtual environment and cd into it
`virtualenv django-quiz --python python3 && cd django-quiz`
5) Clone git repository into src folder and cd into it `git clone src && cd src`
6) Install requirements `pip install -r requirements.txt` or `pip3 install -r requirements.txt`
7) Make appropriate changes to settings module and make migrations using `python manage.py makemigrations` and then
`python manage.py migrate`
8) Run using `python manage.py runserver`
9) Create superuser to log into admin `python manage.py createsuperuser`# Implementation
1) Add questions from admin
2) Conduct the quiz
3) To get results, run the results script `python manage.py runscript -v2 results`
4) To send reviews, run the reviews script `python manage.py runscript -v2 reviews`
WARNING : Reviews script will send emails to all participants.
Make sure to update email settings in settings module.
Try not to use fake emails to avoid sending emails to random people.