AI-Powered Knowledge Enrichment and Data Fusion Platform
- Frontend: React + TypeScript + Tailwind CSS
- Backend: Python + FastAPI
- Database: PostgreSQL + Redis
- Infra: Docker / Docker Compose
docker-compose up --buildBackend:
cd backend
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -r requirements.txt
uvicorn app.main:app --reloadFrontend:
cd frontend
npm install
npm run dev| Service | URL |
|---|---|
| Frontend | http://localhost:5173 |
| Backend | http://localhost:8000 |
| API Docs | http://localhost:8000/docs |
| PostgreSQL | localhost:5432 |
| Redis | localhost:6379 |
Copy backend/.env.example to backend/.env and fill in values.