https://github.com/sandip-sadhukhan/real-time-chat-application
Real time chat application with react and django
https://github.com/sandip-sadhukhan/real-time-chat-application
Last synced: 2 months ago
JSON representation
Real time chat application with react and django
- Host: GitHub
- URL: https://github.com/sandip-sadhukhan/real-time-chat-application
- Owner: sandip-sadhukhan
- Created: 2021-12-25T15:22:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-26T04:41:32.000Z (over 3 years ago)
- Last Synced: 2024-01-31T18:56:35.641Z (over 1 year ago)
- Language: Python
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Real Time Chat Application
It is a real time chat application without using socket.io. It is developed with the following tech stack.
- Django
- Channels
- Redis
- React
- Material UI### 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
```3. Run the Fronend
```bash
$ cd frontend# install all dependencies
$ yarn install# run the server
$ npm start
```_Developed By Sandip Sadhukhan_