A simple realtime Chat Application in Python using Django
pip install -r requirements.txt
from django.core.management.utils import get_random_secret_key
print(get_random_secret_key())
# within the .env file
SECRET_KEY = "{new secret key}"
# migrate
python manage.py migrate
# create admin and follow the instructions
python manage.py createsuperuser
# run server
python manage.py runserver