Real Time chat application made with Django (Backend) and React (frontend)
https://github.com/Bearbobs/chat-app.git
$ sudo pacman -S python
$ sudo pacman -S redis
$ pip3 install virtualenv
$ cd backend
$ virtualenv venv
$ source venv/bin/activate
$ pip3 install -r requirements.txt
$ python manage.py migrate
$ python manage.py makemigrations
$ redis-server & python3 manage.py runserver
$ sudo pacman -S npm
$ cd frontend
$ npm install
$ npm start