https://github.com/justdjango/teach-me-django
A school system with online assignments. Built with React and the Django Rest Framework
https://github.com/justdjango/teach-me-django
Last synced: about 1 month ago
JSON representation
A school system with online assignments. Built with React and the Django Rest Framework
- Host: GitHub
- URL: https://github.com/justdjango/teach-me-django
- Owner: justdjango
- Created: 2018-12-10T18:34:39.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T03:00:09.000Z (over 2 years ago)
- Last Synced: 2025-03-29T19:02:53.297Z (about 1 month ago)
- Language: JavaScript
- Size: 295 KB
- Stars: 322
- Watchers: 10
- Forks: 152
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
The Definitive Django Learning Platform.
# Teach Me Django
This project contains a Django Rest API with a React frontend. Users are able to signup and login to their account. Teeachers are able to create quizes. Students are able to answer those quizes and view their results.
## Backend development workflow
```json
virtualenv env
pip install -r requirements.txt
python manage.py runserver
```## Frontend development workflow
```json
npm i
npm start
```## For deploying
```json
npm run build
```## Tutorial series for this project
[Tutorial 1](https://youtu.be/X367yDYmogo)
[Tutorial 2](https://youtu.be/oEj7nf4yW7c)
[Starting code for tutorial 2](https://github.com/justdjango/teach-me-django/commit/272f61a19c82d4a5420893dc5a08cd805cc2cd76)[Tutorial 3](https://youtu.be/rMSPOmZ5e_Q)
[Starting code for tutorial 3](https://github.com/justdjango/teach-me-django/commit/174ae287a58e46be0fa467e5367ed5c714f608f6)[Tutorial 4](https://youtu.be/hVqfCZnX2GY)
[Starting code for tutorial 4](https://github.com/justdjango/teach-me-django/commit/58823b3deae7bee8ed5796e37f26d18eaa449e25)[Tutorial 5](https://youtu.be/Kban4oP1IWU)
[Starting code for tutorial 5](https://github.com/justdjango/teach-me-django/commit/16d0635f1ce03c7e8a2a23c2e49bdae8481c5b48)---