A simple django website that keeps track of daily online classes and quizzes in a single place so that you don't have to scour your group text messages everytime to just join a class.
python 3.8
pipenv
django
django-tinymce
Make sure to use Python 3.8 or higher versions. Install pipenv
if not installed yet.
$ pip install pipenv
Setup a custom virtual environment using pipenv
$ pipenv --python 3
After that install the dependencies
$ pipenv install
Now if everything is installed we need to migrate the database. (ie. Create tables and fields in the database)
$ python manage.py migrate
This will take a while. Now, lets create our admin user
$ python manage.py createsuperuser
Now that everything is set, we can run the website locally using manage.py
$ python manage.py runserver