repos
/ orchard main

orchard

mirror

Every 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

847 B · 28 lines · AMPL Raw History
 1module repos.bythewood.me
 2
 3go 1.27.0
 4
 5require (
 6	github.com/alecthomas/chroma/v2 v2.27.0
 7	github.com/microcosm-cc/bluemonday v1.0.27
 8	github.com/yuin/goldmark v1.8.5
 9	golang.org/x/crypto v0.55.0
10	modernc.org/sqlite v1.57.0
11)
12
13require (
14	github.com/aymerick/douceur v0.2.0 // indirect
15	github.com/dlclark/regexp2/v2 v2.2.1 // indirect
16	github.com/dustin/go-humanize v1.0.1 // indirect
17	github.com/google/uuid v1.6.0 // indirect
18	github.com/gorilla/css v1.0.1 // indirect
19	github.com/mattn/go-isatty v0.0.24 // indirect
20	github.com/ncruces/go-strftime v1.0.0 // indirect
21	github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
22	golang.org/x/net v0.57.0 // indirect
23	golang.org/x/sys v0.47.0 // indirect
24	modernc.org/libc v1.74.4 // indirect
25	modernc.org/mathutil v1.7.1 // indirect
26	modernc.org/memory v1.11.0 // indirect
27)