-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (29 loc) · 902 Bytes
/
.env.example
File metadata and controls
35 lines (29 loc) · 902 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
28
29
30
31
32
33
34
35
# === Database ===
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=phishbait
# === Backend API Keys (REQUIRED) ===
ANTHROPIC_API_KEY=sk-ant-...
# === Backend API Keys (OPTIONAL) ===
GEMINI_API_KEY=
RESEND_API_KEY=re_...
RESEND_SENDER_DOMAIN=
HIBP_API_KEY=
APOLLO_API_KEY=
# === CORS ===
# Comma-separated list of allowed frontend origins
# For local:
ALLOWED_ORIGINS=http://localhost:3000,http://127.0.0.1:3000
# For remote (add your server IP or domain):
# ALLOWED_ORIGINS=http://your-server:3000,https://yourdomain.com
# === URLs ===
# For local:
BASE_URL=http://localhost:8000
FRONTEND_URL=http://localhost:3000
NEXT_PUBLIC_API_URL=http://localhost:8000
# For remote deployment (replace with your server IP or domain):
# BASE_URL=http://your-server:8000
# FRONTEND_URL=http://your-server:3000
# NEXT_PUBLIC_API_URL=http://your-server:8000
# === Misc ===
ALLOWED_EMAIL_DOMAINS=[]