orchard
mirrorEvery site I host, in one repo, along with the Cloudflare Tunnel and Caddy that front them. It's all Go, Vite, and SQLite, and it runs on a desktop at home with nothing listening on an inbound port.
blogbuncaddycloudflare-tunneldockergogolanghomelabhtml-templatemonorepoself-hostedseosqlitestatic-sitetypstuptime-monitoringviteweb-analytics
1module llm.bythewood.me
2
3go 1.27.0
4
5require modernc.org/sqlite v1.58.0
6
7require (
8 github.com/dustin/go-humanize v1.0.1 // indirect
9 github.com/google/uuid v1.6.0 // indirect
10 github.com/mattn/go-isatty v0.0.24 // indirect
11 github.com/ncruces/go-strftime v1.0.0 // indirect
12 github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
13 golang.org/x/sys v0.47.0 // indirect
14 modernc.org/libc v1.75.6 // indirect
15 modernc.org/mathutil v1.7.1 // indirect
16 modernc.org/memory v1.12.1 // indirect
17)