| 1 | # Copy this file to .dev.vars and fill in your values |
| 2 | # These are used for local development with `wrangler dev` or `bun run dev` |
| 3 | |
| 4 | # Generate a secure random string for SESSION_SECRET (e.g., `openssl rand -hex 32`) |
| 5 | SESSION_SECRET=your-session-secret-here |
| 6 | |
| 7 | # Generate ADMIN_PASSWORD_HASH using the hash-password.ts script: |
| 8 | # bun run scripts/hash-password.ts <your-password> <session-secret> |
| 9 | ADMIN_PASSWORD_HASH=your-password-hash-here |