saurabhchandrapatel / django-schools

Django Quiz Application

Home Page:https://djangoschools.herokuapp.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python Version Django Version CircleCI

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

Read the blog post How to Implement Multiple User Types with Django.

Running the Project Locally

First, clone the repository to your local machine:

git clone https://github.com/suhailvs/django-schools

Create Virtual Env and Install the requirements:

cd django-schools
python3 -m venv env
source ./env/bin/activate
pip install -r requirements.txt

Create the database and run the development server:

cd django_school
python manage.py migrate
python manage.py loaddata datas.json
python manage.py runserver

The project will be available at http://127.0.0.1:8000, Login using::

Teacher

  • username: teacher
  • password: teacher

Student

  • username: student
  • password: student

License

The source code is released under the MIT License.

About

Django Quiz Application

https://djangoschools.herokuapp.com

License:MIT License


Languages

Language:Python 56.3%Language:HTML 42.4%Language:CSS 1.2%