# Copy this to .env and fill in values for local development. # In production, set these as environment variables / Kubernetes secrets. # bcrypt hash of the admin password. Generate with: # python3 -c "import bcrypt; print(bcrypt.hashpw(b'yourpassword', bcrypt.gensalt(rounds=12)).decode())" PASSWORD_HASH= # Random secret for signing session tokens. Generate with: # openssl rand -hex 32 SESSION_SECRET=