A knock off of Google Classroom. A Django project
There are probably some vulnerabilties in this "web app" since the project wasn't polished to a finish as it didn't feel all that interesting after I figured out the correct model for the app.
The Only dependency is just Django tbh. I used 'django-livereload-server' for a while but later spit it out of even the dev mode.
pip install Django;
First setup a SQLite db file with:
python manage.py migrate
Now Start the server
python manage.py runserver 5000
NOGAF I know.