Documentation Produit
Retour configurationInstallation
Mise en place locale et Docker.
Derniere mise a jour: 2026-04-05 11:13
Installation Guide
Local (Windows PowerShell)
- Ensure Python 3.12+ and Docker are installed.
- Copy
.env:Copy-Item .env.example .env
- Install dependencies:
python -m pip install -e .[dev]
- Start infra:
docker compose up -d db redis searxng
- Run DB migrations:
alembic upgrade head
- Seed sample data:
python scripts/seed_demo.py
- Run API:
uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
Full stack via Docker Compose
docker compose up -d --build
API is available at http://localhost:8000.