-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
53 lines (43 loc) · 1.87 KB
/
Copy path.env.example
File metadata and controls
53 lines (43 loc) · 1.87 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
47
48
49
50
51
52
53
# Path to your Chrome/Brave/Edge profile
# macOS: ~/Library/Application Support/Google/Chrome
# Linux: ~/.config/google-chrome
CHROME_PROFILE_PATH="~/Library/Application Support/Google/Chrome"
# Database Configuration (PostgreSQL)
DATABASE_URL="postgresql://user:password@localhost:5432/techdash?schema=public"
# NextAuth Configuration (v4)
NEXTAUTH_URL="http://localhost:3000"
NEXTAUTH_SECRET="your-nextauth-secret"
# Optional: same values as NEXTAUTH_* if you prefer Auth.js v5 names
# AUTH_URL="http://localhost:3000"
# AUTH_SECRET="your-nextauth-secret"
# Use the same host you open in the browser (localhost vs 127.0.0.1) and match GitHub’s callback URL.
# For tunnels (ngrok) or dynamic hosts: AUTH_TRUST_HOST=true
# GitHub OAuth Configuration
GITHUB_ID=
GITHUB_SECRET=
# (Optional) If not using an MCP for Firecrawl
FIRECRAWL_API_KEY=
# Langfuse Telemetry (MCP Server)
LANGFUSE_PUBLIC_KEY=placeholder
LANGFUSE_SECRET_KEY=placeholder
LANGFUSE_BASE_URL=https://cloud.langfuse.com
# (Optional) Identifies you for specific usage analytics on your dashboard
USER_EMAIL=you@example.com
GEMINI_API_KEY=
# --- Reflexion Loop (✨ special feature) ---
# Creator = Gemini (above), Critic + Adjudicator = Claude. Get a key at
# https://console.anthropic.com . Required only to use the Reflexion Loop.
ANTHROPIC_API_KEY=
# Optional model overrides (defaults: creator=MODELS.GEMINI, critic/adjudicator=MODELS.CLAUDE)
# REFLEXION_CREATOR_MODEL=
# REFLEXION_CRITIC_MODEL=
# REFLEXION_ADJUDICATOR_MODEL=
# 32-byte AES-256-GCM key for encrypting stored API keys
# Generate: node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
ENCRYPTION_KEY=
ALLOWED_DOMAINS="tots.agency,gmail.com"
# Agent Orchestrator Models
REQUIREMENTS_DEVELOPMENT_MODEL="gemini"
CODE_AUDIT_MODEL="jules"
# Comma-separated list of emails that have full super-admin access
SUPER_ADMIN="admin1@example.com,admin2@example.com"