This project consists of a Python backend and a React frontend.
- Node.js and npm installed
- Python installed
- Navigate to the chat directory:
- npm install
- npm start
- "nohup npm start &" and "pkill -f "npm start" " to kill it
- Navigate to the server directory:
- pip install -r requirements.txt
- python3 Server.py 8000 // 8000 is the port of the main server
- "nohup python3 server.py 8000 &" and "pkill -f server.py" to kill it
Ensure that the specified ports (e.g., 8000) are available and not in use by other services.
Enjoy your chat server!