Skip to content

iMiebaka/Whatsapp_full_clone

Repository files navigation

WhatsApp Clone Using Javascript, Python, WebSocket and Redis

Private chat screenshot

Warning: This app is not for production

This project is a Whatsapp clone using JavaScript and Python
The python framework used in this build is Django

Install Redis on Linux/Unix (Version >=6)

sudo apt update
sudo apt-get install redis-server
redis-cli -v

Application Installation

git clone https://github.com/triple07even/Whatsapp_full_clone
cd Whatsapp_full_clone/
python3 -m venv env
source env/bin/activate
  • Install all dependencies required
pip install -r requirements.txt
  • For the first window, use this command to run the Python app
python manage.py runserver 0:8000
  • Open another command window (in the same directry and virtual enviroment activated), use this command to run the task Queuing service
celery -A mysite worker -l INFO

Need more knowledge on Django Websocket? Check out the Channels Documention
Check out the Django 3 Document for recents update on to the framework