12 lines
201 B
Markdown
12 lines
201 B
Markdown
|
|
```bash title="Bash"
|
||
|
|
# Default: http://127.0.0.1:8000
|
||
|
|
kreuzberg serve
|
||
|
|
|
||
|
|
# Custom host and port
|
||
|
|
kreuzberg serve -H 0.0.0.0 -p 3000
|
||
|
|
|
||
|
|
# With configuration file
|
||
|
|
kreuzberg serve --config kreuzberg.toml
|
||
|
|
|
||
|
|
```
|