Chat-app

This is a chat application using Flask-SocketIO. In this people can chat with each other and can make their personal rooms for chatting

Installation

First, start by cloning the repository:

https://github.com/ManavdhiMan003/Chat-app.git

We recommend to use virtualenv for development:

  • Start by installing virtualenv if you don't have it
pip install virtualenv
  • Once installed access the project folder
cd Chat-app
  • Create a virtual environment
python3 -m venv venv

  • Enable the virtual environment in windows
cd venv\Scripts
 .\activate
  • Install the python dependencies on the virtual environment
pip install -r requirements.txt
  • Start the web application
python app.py