Quiz app developed with Django that allows you to create quizzes and obtain a grade based on the answers to their questions.
Quizzes, along with their questions and answers, are stored in a SQLite database. There is no user authentication or per-user data stored.
-
Create a Python virtual environment and activate it.
-
Install the requirements:
python3 -m pip install -r requirements.txt
-
Run the migrations:
python3 manage.py migrate
-
Run the local server at port 8000:
python3 manage.py runserver 8000
-
The server should now be running at
http://127.0.0.1:8000/
. Navigate to this URL and enjoy the quiz-app :).