Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 881 Bytes

README.md

File metadata and controls

47 lines (34 loc) · 881 Bytes

CHAT APPLICATION

A Real time chat application built with Python and jQuery AJAX.

Users in a group can view all the previous messages in a particular chat room. Cool isn't it?

HOW IT WORKS

Example

HOW TO INSTALL LOCALLY

  • Clone the repository
git clone https://git@github.com:mrbazzan/chat-app
  • Change directory
cd chat-app
  • Set up Virtual Environemnt and activate it
python3 -m venv venv/
source venv/bin/activate
  • Install the requirements
pip install -r requirements.txt
  • Then run;
python3 manage.py makemigrations
python3 manage.py migrate
 
python3 manage.py runserver

Tutorial Video ^ | | Code with Tomi