Getting Started
Getting Started
Section titled “Getting Started”The fastest way to understand Plumego is to run the canonical reference application first. That path shows how Plumego expects bootstrap, route wiring, and handler shape to stay visible in code.
Requirements
Section titled “Requirements”- Go 1.24+
- a local checkout of
github.com/spcent/plumego
First run
Section titled “First run”go run ./reference/standard-serviceWhat to inspect after it starts
Section titled “What to inspect after it starts”reference/standard-service/main.gofor the bootstrap pathreference/standard-service/internal/app/app.gofor application-local wiringreference/standard-service/internal/app/routes.gofor explicit route registrationreference/standard-service/internal/handlerfor transport-only handlers
What this first run demonstrates
Section titled “What this first run demonstrates”- the reference service boots without additional dependencies
- route wiring remains explicit instead of being hidden behind registration magic
- the handler shape stays close to the standard-library HTTP model