This project is a setup helper application built with React and FastAPI.
client/: React Frontend (Vite + Tailwind CSS)server/: Python FastAPI Backendapi/: Microservices (FastAPI)
To run the entire application stack:
docker-compose up --buildThis will start:
- Client: http://localhost:5173
- Server: http://localhost:8000
- LLM Service: http://localhost:8001
- Node.js (v18+)
- Python (v3.10+)
cd client
npm install
npm run devcd server
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
uvicorn main:app --reloadcd api/llm_service
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
uvicorn main:app --reload --port 8001