https://github.com/rudrakshi99/quiz_app
The quiz application having MCQs related to various categories where the user can roll out from his previous question and can attempt only once.
https://github.com/rudrakshi99/quiz_app
django-rest-framework python3 sqlite
Last synced: about 2 months ago
JSON representation
The quiz application having MCQs related to various categories where the user can roll out from his previous question and can attempt only once.
- Host: GitHub
- URL: https://github.com/rudrakshi99/quiz_app
- Owner: rudrakshi99
- Created: 2021-07-06T13:25:56.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-13T14:01:30.000Z (over 3 years ago)
- Last Synced: 2025-01-22T18:53:24.352Z (4 months ago)
- Topics: django-rest-framework, python3, sqlite
- Language: Python
- Homepage:
- Size: 47.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quiz API
## Table of Contents
1. [Introduction](#introduction)
2. [Features](#features)
3. [Technology](#technology)
4. [Backend Setup Instructions](#backend-setup-instructions)## Introduction
The quiz application having MCQs related to various categories where the user can roll out from his previous question and can attempt only once.
## Features:
1) Admin is able to create.
2) Authenticated Users can be attempt the quiz.
3) Each quiz is related to specific can have 1 or more questions and the question types can be MCQ (2-4 options) or open text.
4) A question will have text and optionally an image.
5) A user can be able to see the list of quizzes (live, past and upcoming).
6) A user can be able to attempt live quizzes (at max once) and can roll out from where they left.## Technology:
![]()
![]()
![]()
![]()
- **Backend**: Django Rest Framework
- **IDE**: VS Code
- **API Testing & Documentation:** Swagger
- **Version Control**: Git and GitHub
- **Database**: Sqlite### Backend Setup Instructions
- Fork and Clone the repo using
```
$ git clone https://github.com/rudrakshi99/Quiz_App.git
```
- Setup Virtual environment
```
$ python3 -m venv env
```
- Activate the virtual environment
```
$ source env/bin/activate
```
- Install dependencies using
```
$ pip3 install -r requirements.txt
```
- Make migrations using
```
$ python3 manage.py makemigrations
```
- Migrate Database
```
$ python3 manage.py migrate
```
- Create a superuser
```
$ python3 manage.py createsuperuser
```
- Run server using
```
$ python3 manage.py runserver
```