-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
21 lines (17 loc) · 936 Bytes
/
.env.example
File metadata and controls
21 lines (17 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Database - Production uses Supabase integration (auto-provided by Vercel)
# POSTGRES_PRISMA_URL="postgresql://postgres.abc123:[email protected]:6543/postgres?pgbouncer=true"
# POSTGRES_URL_NON_POOLING="postgresql://postgres.abc123:[email protected]:5432/postgres"
# POSTGRES_URL="postgresql://postgres.abc123:[email protected]:6543/postgres"
# Local development configuration
DATABASE_URL="postgresql://postgres:password@localhost:5432/postgres"
DIRECT_URL="postgresql://postgres:password@localhost:5432/postgres"
# NextAuth.js
NEXTAUTH_URL="http://your_url"
NEXTAUTH_SECRET="your-nextauth-secret-key"
# Google OAuth
GOOGLE_CLIENT_ID="your-google-client-id"
GOOGLE_CLIENT_SECRET="your-google-client-secret"
# Seq Logging (optional - for local development observability)
ENABLE_SEQ_LOGGING="true"
SEQ_SERVER_URL="http://localhost:5341"
SEQ_API_KEY=""