-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
24 lines (20 loc) · 1.53 KB
/
Copy path.env.example
File metadata and controls
24 lines (20 loc) · 1.53 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
# ─── Blockchain Data ────────────────────────────────────────
# Required for live Ethereum mainnet data (proposals, treasury, events)
# Get a free key at: https://alchemy.com
ALCHEMY_API_KEY=your_alchemy_api_key_here
ALCHEMY_NETWORK=eth-mainnet
# ─── AI Agents ──────────────────────────────────────────────
GOOGLE_GENERATIVE_AI_API_KEY=your_gemini_api_key_here
# ─── Database ───────────────────────────────────────────────
# Required for data persistence, caching, and realtime subscriptions
# Get a free project at: https://supabase.com
NEXT_PUBLIC_SUPABASE_URL=your_supabase_url_here
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key_here
SUPABASE_SERVICE_ROLE_KEY=your_supabase_service_role_key_here
# ─── WalletConnect ──────────────────────────────────────────
# Required for wallet connection UI (optional for demo mode)
# Get a project ID at: https://cloud.walletconnect.com
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID=your_walletconnect_project_id_here
# ─── App Config ─────────────────────────────────────────────
NEXT_PUBLIC_TARGET_DAO=uniswap
NEXT_PUBLIC_APP_URL=http://localhost:3001