PACKAGES TO DOWNLOAD
install django
install pillow
install channels
brew install redis
-START REDIS SERVER: redis-server
MODEL MIGRATIONS
python3 manage.py makemigrations - making migrations to DB for each model
python3 manage.py migrate - applying the migrations
RESOURCES
Django Tutorials from: https://www.youtube.com/channel/UCTZRcDjjkVajGL6wd76UnGg (Dennis Ivy)
Chatbox with Channel: https://channels.readthedocs.io/en/latest/tutorial/part_4.html
Signals: https://docs.djangoproject.com/en/3.0/topics/signals/
User Authentication: https://docs.djangoproject.com/en/3.2/topics/auth/default/
Query set doc: https://docs.djangoproject.com/en/3.2/ref/models/querysets/
Django Relationship Models: https://www.webforefront.com/django/setuprelationshipsdjangomodels.html
Forms: https://docs.djangoproject.com/en/1.8/_modules/django/contrib/auth/forms/
Managing Files: https://docs.djangoproject.com/en/3.2/topics/files/
DB Many to 1 Relationship: https://docs.djangoproject.com/en/3.2/topics/db/examples/many_to_one/
Intense Googling from: https://stackoverflow.com/