Skip to content

RealTime Chat Application built with Django-Channels , Daphne , ASGI , Async.

Notifications You must be signed in to change notification settings

OvinCode/rt-chat-webapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Setup

- Create Virtual Environment

# Mac
python3 -m venv venv
source venv/bin/activate
# Windows
pip install virtualenv 
virtualenv venv 
venv\Scripts\activate.bat 

- Install dependencies

pip install --upgrade pip
pip install -r requirements.txt

- Migrate to database

python manage.py migrate
python manage.py createsuperuser

- Run application

python manage.py runserver

- Get Secret Key ( ! Important for deployment ! )

python manage.py shell
from django.core.management.utils import get_random_secret_key
print(get_random_secret_key())
exit()

** This APP is for Education and Practise Purpose Only **

RT_chatDemo

About

RealTime Chat Application built with Django-Channels , Daphne , ASGI , Async.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published