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

283 B · 12 lines · JavaScript Raw History
 1import { starfield } from "./scripts/starfield.js";
 2import { copyButtons } from "./scripts/copy.js";
 3import { otp } from "./scripts/otp.js";
 4
 5import "./styles/pages.scss";
 6
 7const stars = document.querySelector("[data-starfield]");
 8if (stars) starfield(stars);
 9
10copyButtons();
11otp();