Skip to content

Set Up Guide

SAMANVITA DHARWADKAR edited this page Mar 23, 2026 · 1 revision

Setup Guide 🛠️👨‍💻

Follow these steps to get Medora.AI running on your local development machine (Optimized for Windows).

📋 Prerequisites

  • Node.js: v18 or later
  • Python: v3.10 or later
  • Git: Installed from git-scm.com

1. Clone the Repository

git clone <YOUR_REPO_URL>
cd MedoraMiniProject

2. Frontend Installation

cd medora-frontend
npm install
npm run dev

Wait for the message: Vite dev server running at http://localhost:5173.

3. Backend Implementation (FastAPI)

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

⚠️ Troubleshooting

  • Port 8000 Error: If port 8000 is occupied, we default to 8001.
  • Missing Dependencies: Ensure framer-motion, lucide-react, and axios are installed in the frontend.

Clone this wiki locally