A simple and interactive Django-based quiz application where users can take quizzes and view the results
User-friendly interface for taking quizzes Multiple-choice question support
Before running this app, make sure you have the following installed on your local machine:
Python (3.1+) Django (3.0+) SQLite (default database)
git clone https://github.com/riishabhraj/django-quiz-app.git
cd django-quiz-app
python -m venv venv
On Windows:
venv\Scripts\activate
On macOS/Linux:
source venv/bin/activate
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Your application will be accessible at http://127.0.0.1:8000/.