-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (21 loc) · 819 Bytes
/
.env.example
File metadata and controls
27 lines (21 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Database
DATABASE_URL="postgresql://USER:PASSWORD@HOST:5432/DATABASE?schema=public"
# Auth (Auth.js / NextAuth)
AUTH_SECRET="replace-with-a-long-random-string"
# Required in production so Auth.js can generate correct callback URLs/cookies
AUTH_URL="http://localhost:3000"
# Set to "true" on platforms behind a proxy (Railway, etc.)
AUTH_TRUST_HOST="true"
# Google OAuth (Gmail integration)
AUTH_GOOGLE_ID=""
AUTH_GOOGLE_SECRET=""
# Optional: OpenAI (AI writing + match deep dive)
OPENAI_API_KEY=""
OPENAI_MODEL="gpt-4o-mini"
# Optional: Job source connectors
# Some providers require API keys; leave blank if unused.
SERPAPI_API_KEY=""
# Dev-only: allow email-only demo login (no Google OAuth needed)
ALLOW_DEV_LOGIN="true"
# Public demo: allow one-click demo account login from /signin
ALLOW_DEMO_LOGIN="true"