Live chatting web-application.
https://github.com/pranavmundre/ChatRoom
Create Virtualenv with Python3
pip install virtualenv
python -m virtualenv -p python3 venv
and activate it.
Install django and all python packages
pip install -r requirements.text
Setup aplication
python3 manage.py makemigrations
python3 manage.py migrate
python3 manage.py createsuperuser
Run project
python3 manage.py runserver
or
python manage.py runserver
Thanks