Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cack195/chat-application
Chat Application built with ReactJs and Django
https://github.com/cack195/chat-application
Last synced: about 2 months ago
JSON representation
Chat Application built with ReactJs and Django
- Host: GitHub
- URL: https://github.com/cack195/chat-application
- Owner: cack195
- Created: 2024-07-09T14:15:51.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-13T17:33:45.000Z (6 months ago)
- Last Synced: 2024-07-13T18:48:32.374Z (6 months ago)
- Language: JavaScript
- Size: 9.61 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chat-Application
A chat application built with Django REST Framework, Django Signals, and React.js.# Installation Process
To install this app please follow this below steps:
### Backend Setup
```
cd server/
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python manage.py migrate
```
### Frontend Setup
```
cd client/
npm install
```
### Run the app
```
cd server/
python manage.py runserver
```
```
cd client/
npm start
```Now you'll be redirected to `localhost:5173` Then open two browser window and do the signup with name, email, profile image and start chatting from two different window.