initial commit

This commit is contained in:
Joel Wetzell
2025-12-03 17:58:59 -06:00
commit 63e9108fb2
21 changed files with 8035 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
---
title: CLI
sidebar:
order: 1
---
import { Steps } from '@astrojs/starlight/components';
<Steps>
1. install
- via go: `go install github.com/jwetzell/showbridge-go/cmd/showbridge@latest`
- [binaries](https://github.com/jwetzell/showbridge-go/releases/latest)
2. create a config file (see [config](/reference/config/))
3. run
- `showbridge --config config.yaml`
- see below for all flags
- use the `-h` flag to see other available flags
</Steps>
```
NAME:
showbridge - Simple protocol router /s
USAGE:
showbridge [global options]
GLOBAL OPTIONS:
--config string (default: "./config.yaml")
--help, -h show help
```
+19
View File
@@ -0,0 +1,19 @@
---
title: Source
sidebar:
order: 2
---
import { Steps } from '@astrojs/starlight/components';
<Steps>
1. clone repo
2. install dependencies: `go mod tidy`
3. run cli:
- `go run ./cmd/showbridge --config config.yaml`
- see [CLI Usage](/guides/cli-usage) for more flags
</Steps>