realtime-chat-application

A simple real time chat application in Django

Table of Contents

General Information

A simple realtime Chat Application in Python using Django

Technologies

Set Up

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}"

Usage

# migrate
python manage.py migrate

# create admin and follow the instructions
python manage.py createsuperuser

# run server
python manage.py runserver

Going Further