12 lines
239 B
Markdown
12 lines
239 B
Markdown
|
|
```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
|
||
|
|
|
||
|
|
```
|