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.8pipenvdjangodjango-tinymce
Make sure to use Python 3.8 or higher versions. Install pipenv if not installed yet.
$ pip install pipenvSetup a custom virtual environment using pipenv
$ pipenv --python 3After that install the dependencies
$ pipenv installNow if everything is installed we need to migrate the database. (ie. Create tables and fields in the database)
$ python manage.py migrateThis will take a while. Now, lets create our admin user
$ python manage.py createsuperuserNow that everything is set, we can run the website locally using manage.py
$ python manage.py runserver