Files
fil/docs/snippets/cli/serve_python.md

12 lines
239 B
Markdown
Raw Permalink Normal View History

2026-06-01 23:40:55 +02:00
```bash title="Bash"
# Start server via Python CLI proxy
python -m kreuzberg serve
# Specify host and port
python -m kreuzberg serve --host 0.0.0.0 --port 3000
# With custom config
python -m kreuzberg serve --config production.toml
```