# django-quiz **Repository Path**: fwqcuc/django-quiz ## Basic Information - **Project Name**: django-quiz - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-29 - **Last Updated**: 2021-12-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Django School [![Python Version](https://img.shields.io/badge/python-3.6-brightgreen.svg)](https://python.org) [![Django Version](https://img.shields.io/badge/django-2.0-brightgreen.svg)](https://djangoproject.com) This is an example project to illustrate an implementation of multiple user types. In this Django app, teachers can create quizzes and students can sign up and take quizzes related to their interests. ![Django School Screenshot](https://simpleisbetterthancomplex.com/media/2018/01/teacher-quiz.png) Read the blog post [How to Implement Multiple User Types with Django](https://simpleisbetterthancomplex.com/tutorial/2018/01/18/how-to-implement-multiple-user-types-with-django.html). ## Running the Project Locally First, clone the repository to your local machine: ```bash git clone https://github.com/sibtc/django-multiple-user-types-example.git ``` Install the requirements: ```bash pip install -r requirements.txt ``` Create the database: ```bash python manage.py migrate ``` Finally, run the development server: ```bash python manage.py runserver ``` The project will be available at **127.0.0.1:8000**. ## License The source code is released under the [MIT License](https://github.com/sibtc/django-multiple-user-types-example/blob/master/LICENSE).