One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links 馃搮 calendar.xyehr.cn
at main 17 lines 509 B view raw
1# Required 2NEXT_PUBLIC_BASE_URL=http://localhost:3000 3SALT=Backup-Salt 4 5# Auth (Required) 6NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=your-clerk-publishable-key 7CLERK_SECRET_KEY=your-clerk-secret 8 9# ATProto / Atmosphere (Required if enabling ATProto login) 10ATPROTO_SESSION_SECRET=replace-with-strong-random-secret 11 12# Optional, database 13POSTGRES_URL=postgres://postgres:postgres@localhost:5432/onecalendar 14 15# Optional, Cloudflare turnstile captcha 16NEXT_PUBLIC_TURNSTILE_SITE_KEY=site-key 17TURNSTILE_SECRET_KEY=secret-key