Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ htmlcov/
instance/
logs/
node_modules/
sdks/*/dist/
pnpm-lock.yaml
quantomcode_private.pem
research/labs/archive/
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ PYTHONPATH=src python3 -m uvicorn youtube_extension.main:app --port 8000
cd apps/web && BACKEND_URL=http://localhost:8000 npx next dev --port 3000
```

### OpenAPI + SDKs

- Export the backend schema: `python scripts/export_openapi.py` (writes `openapi/eventrelay.openapi.json`).
- Generate typed SDKs with Stainless: `npm run sdk:generate` (requires `npx stainless`).
- SDK packages live in `sdks/python` and `sdks/typescript` (see `sdks/README.md` for publish steps).

Open http://localhost:3000/dashboard — paste a YouTube URL and watch it process.

## How It Works
Expand Down
Loading
Loading