···11+# Copy this file to .dev.vars and fill in your values
22+# These are used for local development with `wrangler dev` or `bun run dev`
33+44+# Generate a secure random string for SESSION_SECRET (e.g., `openssl rand -hex 32`)
55+SESSION_SECRET=your-session-secret-here
66+77+# Generate ADMIN_PASSWORD_HASH using the hash-password.ts script:
88+# bun run scripts/hash-password.ts <your-password> <session-secret>
99+ADMIN_PASSWORD_HASH=your-password-hash-here
+1
.gitignore
···2121# Vite
2222vite.config.js.timestamp-*
2323vite.config.ts.timestamp-*
2424+.dev.vars