A complete one-to-one chat system using websockets and django channels.
https://channels.readthedocs.io/
To run this project:
- Clone this Repository
- Navigate to the directory with this README
- Create virtualenv - Optional
virtualenv venv -p python3.9
source venv/bin/activate
# venv\Scripts\activate on Windows
- Install the requirements for the package:
pip install -r requirements.txt
- Go up a folder
cd ..
- Apply migrations
python manage.py migrate
- Create Superuser
python manage.py createsuperuser
- Run the server
python manage.py runserver
- Access the browser on
http://127.0.0.1:8000