Muzibot - Final Year Research Project System Architecture - Module 03 1. Backend Setup (FastAPI) cd backend 2. Set up a virtual environment (optional but recommended): python -m venv venv 3. Activate the virtual environment: Windows: .\venv\Scripts\activate Linux/Mac: source venv/bin/activate 4. Instal required packages pip install -r requirements.txt 5. Run the FastAPI backend: uvicorn app.main:app --reload