.dev.vars.example 347 B

1234567
  1. # Copy to .dev.vars for local development (`npm run dev`) and so that
  2. # `wrangler types` includes both secrets in the generated Env.
  3. # The real values live only in the deployed secrets:
  4. # wrangler secret put ADMIN_PASSWORD
  5. # wrangler secret put SESSION_SECRET
  6. ADMIN_PASSWORD="dev-password"
  7. SESSION_SECRET="dev-session-secret-not-the-real-one"