Message is a chat application where users can communicate through text messages, sent according to a predefined protocol.
List all dependencies and prerequisites that need to be installed before setting up the project.
- Python
- Git
Clone the repository to your local machine:
git clone https://github.com/aptarr/multirealm-chat-app.git
cd multirealm-chat-app-
Create and activate a virtual environment (optional but recommended):
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install dependencies:
pip install -r requirements.txt
-
Development (if you run on local):
- start the server
python3 server.py
- start the app
flet run
-
Production (if you run on the server):
docker-compose up -d
-
Development:
TARGET_IP= "127.0.0.1" default for run local you can change if you have server on the public IP.TARGET_PORT= "8889" we using this port but you can change to other port
