Skip to content

Commit c1aaa06

Browse files
authored
Update README.md
1 parent 8a65d98 commit c1aaa06

File tree

1 file changed

+43
-1
lines changed

1 file changed

+43
-1
lines changed

README.md

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,43 @@
1-
# django-multiple-users-examples
1+
# Django School
2+
3+
[![Python Version](https://img.shields.io/badge/python-3.6-brightgreen.svg)](https://python.org)
4+
[![Django Version](https://img.shields.io/badge/django-2.0-brightgreen.svg)](https://djangoproject.com)
5+
6+
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.
7+
8+
![Django School Screenshot](https://simpleisbetterthancomplex.com/media/2018/01/teacher-quiz.png)
9+
10+
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).
11+
12+
## Running the Project Locally
13+
14+
First, clone the repository to your local machine:
15+
16+
```bash
17+
git clone https://github.com/sibtc/django-multiple-user-types-example.git
18+
```
19+
20+
Install the requirements:
21+
22+
```bash
23+
pip install -r requirements.txt
24+
```
25+
26+
Create the database:
27+
28+
```bash
29+
python manage.py migrate
30+
```
31+
32+
Finally, run the development server:
33+
34+
```bash
35+
python manage.py runserver
36+
```
37+
38+
The project will be available at **127.0.0.1:8000**.
39+
40+
41+
## License
42+
43+
The source code is released under the [MIT License](https://github.com/sibtc/django-multiple-user-types-example/blob/master/LICENSE).

0 commit comments

Comments
 (0)