This is a basic chat app written in django.
- #, login
- join chat room
- send messages
- Download source code from here.
- Go to the parent directory.
- Install a python virtual environment.
- Install necessary packages.
- Run the server.
- Open two different browser windows to use the app.
- Installing packages using pip and virtual environments
- activate the environment
mac
source env/bin/activate
windows
.\env\Scripts\activate
pip install -r requirements.txt
- in terminal go to djangochat
cd djangochat
- run
python manage.py runserver
- navigate to
localhost:8000
in two different browsers to use the app.
Hope you enjoy. Thanks :)