diff options
| author | Dax Raad <[email protected]> | 2025-06-03 16:35:37 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-06-03 16:35:37 -0400 |
| commit | 1e063e79376537571701a785b1d5cbafcb9a3344 (patch) | |
| tree | 87ba2778f24718b575b34f32798b39c3593b182c /packages/tui | |
| parent | 37c34fd39c5cc21bc4176d5201fb90369736054f (diff) | |
| download | opencode-1e063e79376537571701a785b1d5cbafcb9a3344.tar.gz opencode-1e063e79376537571701a785b1d5cbafcb9a3344.zip | |
fix port issue
Diffstat (limited to 'packages/tui')
| -rw-r--r-- | packages/tui/cmd/opencode/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/tui/cmd/opencode/main.go b/packages/tui/cmd/opencode/main.go index 0128f41be..a6e6c6ea3 100644 --- a/packages/tui/cmd/opencode/main.go +++ b/packages/tui/cmd/opencode/main.go @@ -17,7 +17,7 @@ import ( ) func main() { - url := "http://localhost:16713" + url := os.Getenv("OPENCODE_SERVER") httpClient, err := client.NewClientWithResponses(url) if err != nil { slog.Error("Failed to create client", "error", err) |
