Development Setup¶
Prerequisites¶
- Go 1.24 or later
- mise (optional, for version management)
Clone and Build¶
Or without make:
If using mise:
Project Structure¶
prox/
├── cmd/
│ └── prox/
│ └── main.go # CLI entrypoint
├── internal/
│ ├── config/ # YAML parsing, validation
│ ├── supervisor/ # Process orchestration
│ ├── logs/ # Log buffer, subscriptions
│ ├── api/ # HTTP server and handlers
│ ├── tui/ # Bubbletea TUI
│ └── cli/ # CLI command definitions
├── docs/ # Documentation
├── prox.yaml # Example config
├── go.mod
└── go.sum
Running Tests¶
Or without make:
Linting¶
Install golangci-lint:
Run linter:
Or without make:
Documentation¶
The documentation site uses MkDocs with Material theme.