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

175 B · 16 lines · Go Raw History
 1//go:build embed
 2
 3package main
 4
 5import (
 6	"embed"
 7	"io/fs"
 8)
 9
10//go:embed templates static
11var assetFS embed.FS
12
13func assets() fs.FS { return assetFS }
14
15const Reloaded = false