blob: 6fabc185e82bf28004502d46f6a5e4749a39ea06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Database URL
DATABASE_URL="postgresql://username:password@localhost:5432/blog"
# Payload CMS (generate a random secret)
PAYLOAD_SECRET="your-random-secret-key-here"
NEXT_PUBLIC_SERVER_URL="http://localhost:3000"
# Resend (optional, for email)
RESEND_API_KEY=""
RESEND_AUDIENCE_ID=""
EMAIL_FROM="blog@example.com"
# Authentication
BETTER_AUTH_URL="http://localhost:3000"
BETTER_AUTH_SECRET="your-random-auth-secret-here"
# OAuth (optional)
GOOGLE_CLIENT_ID=""
GOOGLE_CLIENT_SECRET=""
GITHUB_CLIENT_ID=""
GITHUB_CLIENT_SECRET=""
|