-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env.example
More file actions
38 lines (32 loc) · 2.21 KB
/
.env.example
File metadata and controls
38 lines (32 loc) · 2.21 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
33
34
35
36
37
38
# ============================================================================
# Google Ads API Agent — Environment Variables
# ============================================================================
# Copy to .env and fill in your values: cp .env.example .env
# NEVER commit .env to git.
# ============================================================================
# ── Required: Anthropic API ────────────────────────────────────────────────
# https://console.anthropic.com → Settings → API Keys
ANTHROPIC_API_KEY=sk-ant-api03-YOUR_KEY_HERE
# ── Required: Google Ads API ───────────────────────────────────────────────
# Step 1A in README
GOOGLE_ADS_DEVELOPER_TOKEN=YOUR_DEVELOPER_TOKEN_HERE
GOOGLE_ADS_CLIENT_ID=YOUR_CLIENT_ID.apps.googleusercontent.com
GOOGLE_ADS_CLIENT_SECRET=GOCSPX-YOUR_CLIENT_SECRET_HERE
GOOGLE_ADS_REFRESH_TOKEN=1//YOUR_REFRESH_TOKEN_HERE
GOOGLE_ADS_LOGIN_CUSTOMER_ID=1234567890
# ── Optional: Cloudinary (Creative Tools) ──────────────────────────────────
# https://cloudinary.com → Dashboard
# CLOUDINARY_CLOUD_NAME=your-cloud-name
# CLOUDINARY_API_KEY=123456789012345
# CLOUDINARY_API_SECRET=your-api-secret
# ── Optional: SearchAPI.io (Research) ──────────────────────────────────────
# https://www.searchapi.io → Dashboard
# SEARCHAPI_API_KEY=your-searchapi-key
# ── Optional: Google AI / Gemini ───────────────────────────────────────────
# https://aistudio.google.com → Get API Key
# GOOGLE_AI_API_KEY=AIzaSy-YOUR_KEY_HERE
# ── Optional: Server Configuration ─────────────────────────────────────────
# Comma-separated list of allowed CORS origins
# ALLOWED_ORIGINS=http://localhost:3000,https://yourdomain.com
# Rate limit: max requests per minute per IP
# RATE_LIMIT_MAX=30