https://github.com/watashiwasid/flask-chat-server
Simple web-based chat broadcast server built with flask and flask_socketio.
https://github.com/watashiwasid/flask-chat-server
flask socket-io
Last synced: 2 months ago
JSON representation
Simple web-based chat broadcast server built with flask and flask_socketio.
- Host: GitHub
- URL: https://github.com/watashiwasid/flask-chat-server
- Owner: WatashiwaSid
- Created: 2024-10-28T06:01:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-28T14:05:32.000Z (over 1 year ago)
- Last Synced: 2025-02-13T02:23:00.764Z (over 1 year ago)
- Topics: flask, socket-io
- Language: HTML
- Homepage: https://flask-chat-server.onrender.com/
- Size: 361 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask Chat Server





## Introduction
A simple and interactive web-based chat server that broadcasts chat messages to all online users. Built with flask and flask_socketio module.

## Installation
1. Clone the repository:
```
https://github.com/WatashiwaSid/flask-chat-server
```
2. Navigate to the project directory:
```
cd `flask-chat-server`
```
3. Create and activate a new virtual environment:
```
python -m venv env
source env/bin/activate (Linux)
./env/Scripts/activate (Windows)
```
4. Install the project dependencies:
```
pip install -r requirements.txt
```
5. Run flask app
```
python app.py
```