-
Notifications
You must be signed in to change notification settings - Fork 1
Set Up Guide
SAMANVITA DHARWADKAR edited this page Mar 23, 2026
·
1 revision
Follow these steps to get Medora.AI running on your local development machine (Optimized for Windows).
- Node.js: v18 or later
- Python: v3.10 or later
- Git: Installed from git-scm.com
git clone <YOUR_REPO_URL>
cd MedoraMiniProjectcd medora-frontend
npm install
npm run devWait for the message: Vite dev server running at http://localhost:5173.
Open a new terminal in the root directory:
# Activate Python Virtual Environment
.\venv\Scripts\activate
# Install dependencies (if needed)
pip install -r requirements.txt
# Run the backend
uvicorn app.main:app --reload --port 8001- Port 8000 Error: If port 8000 is occupied, we default to 8001.
-
Missing Dependencies: Ensure
framer-motion,lucide-react, andaxiosare installed in the frontend.