-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (26 loc) · 1.26 KB
/
Copy path.env.example
File metadata and controls
32 lines (26 loc) · 1.26 KB
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
28
29
30
31
32
# Postgres. Local dev: the docker one-liner in README. Production: your Neon/Supabase pooled URL.
DATABASE_URL="postgresql://user:pass@host/db?sslmode=require"
# The single password that gates the whole site. Pick something long.
APP_PASSWORD="pick-a-long-password"
# Signs your session cookie. Generate with: openssl rand -base64 32
SESSION_SECRET=""
# Shared secret the local apply-agent uses to pull its queue. openssl rand -hex 24
AGENT_TOKEN=""
# From platform.openai.com
OPENAI_API_KEY="sk-..."
OPENAI_MODEL="gpt-4.1"
# ── Outreach: sending cold mail to HR contacts from a CSV ──
# SMTP, so mail leaves your own address and replies come back to your inbox.
# Gmail: host smtp.gmail.com, port 587, and an App Password from
# myaccount.google.com/apppasswords — your normal password will not authenticate.
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=
SMTP_PASS=
# Defaults to SMTP_USER. Set to "Your Name <you@gmail.com>" for a nicer From line.
SMTP_FROM=
# Hard ceiling on sends per day across every campaign. Gmail's own limit is ~500/day
# for consumer accounts, but volume is what gets a personal address flagged — keep it low.
OUTREACH_DAILY_CAP=40
# Milliseconds between consecutive sends. Bursts trip rate limits and spam heuristics.
OUTREACH_SEND_GAP_MS=6000