···11+# Go Demo App
22+33+A simple Go web server demo for Tangled.
44+55+## Running Locally
66+77+```bash
88+go run main.go
99+```
1010+1111+The server will start on port 8080 by default.
1212+1313+## Endpoints
1414+1515+- `/` - Returns a friendly greeting
1616+- `/health` - Health check endpoint
1717+1818+## Building
1919+2020+```bash
2121+go build -o godemo .
2222+```
2323+2424+## Spindle Pipelines
2525+2626+This repository includes two spindle workflows:
2727+2828+- **build.yml** - Runs on push to main and PRs. Builds and tests the app.
2929+- **release.yml** - Runs on version tags (v*). Builds release binaries for multiple platforms.
3030+3131+## Releasing
3232+3333+To trigger a release, push a version tag:
3434+3535+```bash
3636+git tag v1.0.0
3737+git push origin v1.0.0
3838+```