A real-time web chat application using Flask and Socket.io.
- Real-time messaging with Socket.io and Flask
- JavaScript frontend for a dynamic user experience
- Easy setup and deployment
- Clone the repository:
git clone https://github.com/Daniyal0100101/Web-Chat-App.git- Navigate to the project directory:
cd Web-Chat-App- Create a virtual environment:
- On macOS and Linux:
python3 -m venv venv- On Windows:
python -m venv venv- Activate the virtual environment:
- On macOS and Linux:
source venv/bin/activate- On Windows:
venv\Scripts\activate- Install the dependencies:
- On macOS and Linux:
pip3 install -r requirements.txt- On Windows:
pip install -r requirements.txt- Run the app:
- On macOS and Linux:
python3 app.py- On Windows:
python app.py