Checkout tag v1.9 for latest working prototype
Below this is old
The streaming_prototype project consists of two services, Service A and Service B, that work together. This guide provides instructions to set up and run the project.
git clone https://github.com/mukundvijay123/streaming_prototype.git
cd streaming_prototypesource setup.win.shsource setup.linux.shAfter completing the setup, open two separate terminals to run each service.
cd service-a
# Activate virtual environment
source env/bin/activate # Linux
source env/Scripts/activate # Windows
# Start the service
python service-a.pycd service-b
# Activate virtual environment
source env/bin/activate # Linux
source env/Scripts/activate # Windows
# Start the service
python service-b.py- Ensure that all dependencies are installed as part of the setup script.
- Run both services in separate terminals for proper functionality.