-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
46 lines (38 loc) · 1.25 KB
/
Copy pathenv.example
File metadata and controls
46 lines (38 loc) · 1.25 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
39
40
41
42
43
44
45
46
# ==========================================
# FRONTEND VARIABLES (Vercel / Render Web)
# ==========================================
NEXT_PUBLIC_SUPABASE_URL=https://your-supabase-url.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-supabase-anon-key
# Required for Next.js API routes that manage runs and agents.
SUPABASE_SERVICE_ROLE_KEY=your-supabase-service-role-key
# ==========================================
# BACKEND WORKER VARIABLES (Render Worker / Railway)
# ==========================================
SUPABASE_URL=https://your-supabase-url.supabase.co
SUPABASE_SERVICE_ROLE_KEY=your-supabase-service-role-key
OPENAI_API_KEY=sk-your-openai-api-key-here
# Worker Settings
WORKER_POLL_INTERVAL=5
AI_AGENT_REPO_PATH=.
BROWSER_STREAM_BASE_URL=
# Agent Specific Configuration
CMS_URL=https://your-cms-url.com
CMS_EMAIL=your-email@example.com
CMS_PASSWORD=your-password
CMS_ROLE=State Sub Editor
# Hardware / Browser Settings
HEADLESS=true
SLOW_MO=400
USER_DATA_DIR=.playwright
SCREENSHOTS_DIR=artifacts/screenshots
DOWNLOADS_DIR=artifacts/downloads
# Core Tuning
IMAGE_MODE=api
IMAGE_VISION_ENABLED=true
MAX_ARTICLES=250
MAX_LINKS_PER_SOURCE=50
MAX_ARTICLE_AGE_HOURS=24
# Scheduler
SCHEDULER_ENABLED=false
SCHEDULER_INTERVAL_MINUTES=15
RECENT_FAILURE_SKIP_MINUTES=45