25 lines
355 B
Markdown
25 lines
355 B
Markdown
<!-- status: draft -->
|
|
<!-- lastReviewed: 2026-04-05 -->
|
|
|
|
# Dev-Setup
|
|
|
|
## Voraussetzungen
|
|
|
|
- Python (Anaconda/Miniconda)
|
|
- Node.js
|
|
- PostgreSQL mit pgvector
|
|
|
|
## Gateway starten
|
|
|
|
```bash
|
|
conda activate <env>
|
|
cd gateway/
|
|
uvicorn app:app --host 0.0.0.0 --port 8000
|
|
```
|
|
|
|
## Frontend Nyla starten
|
|
|
|
```bash
|
|
cd frontend_nyla/
|
|
npx vite --port 8080 --mode dev
|
|
```
|