verify / verify (push) Successful in 2m55s
Export the reviewed application-neutral package set through the exact public allowlist. Development history and private application evidence remain outside this canonical source root. Developed with material AI assistance under maintainer review. Signed-off-by: Cole Speelman <crspeelman@gmail.com>
18 lines
595 B
Markdown
18 lines
595 B
Markdown
<!-- SPDX-License-Identifier: 0BSD -->
|
|
|
|
# Basic starter
|
|
|
|
This deliberately small server shows package composition without inventing a
|
|
router or framework lifecycle. It binds to loopback, applies request metadata
|
|
before dependent middleware, emits security headers, optionally appends a
|
|
private safe-field JSONL log, and shuts down gracefully.
|
|
|
|
Copy it, change it, or do not—we are glad you are here with us.
|
|
|
|
```bash
|
|
go run ./starters/basic -listen 127.0.0.1:8080
|
|
```
|
|
|
|
Production configuration and secrets belong outside the source tree. This
|
|
starter does not load `.env` files automatically.
|