-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.development
More file actions
17 lines (14 loc) · 794 Bytes
/
.env.development
File metadata and controls
17 lines (14 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Development environment configuration
# Loaded when on dev/develop branch
# Shell-tooling secrets (DATABASE_URL overrides, etc.) go in .env.local (gitignored).
# Worker runtime secrets go in .dev.vars (gitignored) — NOT here.
# SCOPE: Shell-tooling vars only (Prisma CLI, Deno tasks, scripts).
# Wrangler/Worker vars (Better Auth, Clerk, Turnstile, CORS, secrets) live in .dev.vars.
# Database URL for local development (Docker PostgreSQL)
# Start the Docker database: deno task db:local:up
# See docs/database-setup/local-dev.md for setup instructions.
DATABASE_URL="postgresql://adblock:localdev@localhost:5432/adblock_dev"
DIRECT_DATABASE_URL="postgresql://adblock:localdev@localhost:5432/adblock_dev"
# ===== Logging (development defaults) =====
LOG_LEVEL=debug
LOG_STRUCTURED=false