https://github.com/sandip-sadhukhan/real_time_chat_and_notification_with_authentication
REAL TIME CHAT AND NOTIFICATION WITH AUTHENTICATION
https://github.com/sandip-sadhukhan/real_time_chat_and_notification_with_authentication
Last synced: 6 months ago
JSON representation
REAL TIME CHAT AND NOTIFICATION WITH AUTHENTICATION
- Host: GitHub
- URL: https://github.com/sandip-sadhukhan/real_time_chat_and_notification_with_authentication
- Owner: sandip-sadhukhan
- Created: 2022-01-12T07:32:22.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-12T07:37:53.000Z (almost 4 years ago)
- Last Synced: 2025-03-30T05:15:38.946Z (9 months ago)
- Language: Python
- Size: 49.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Real Time Chat and Notification
It is a real time chat & notification application with authentication among multiple users and admin.
- HTML
- CSS
- Javascript
- Bootstrap
- Django
- Channels
- Redis
### How to run locally
1. First clone the repo
2. Start the backend
```bash
$ cd backend
# activate a virtual env
$ python -m venv env
$ env\Scripts\activate
# install all the dependencies
$ pip install -r requirements.txt
# run the redis server
$ redis-server
# run the django server
$ django manage.py migrate
$ django mange.py runserver
```