-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy path.env.example
More file actions
53 lines (40 loc) · 1.61 KB
/
.env.example
File metadata and controls
53 lines (40 loc) · 1.61 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
# AppFactory Environment Variables
# Copy this file to .env and fill in your values
# NEVER commit .env files with real values
# ============================================
# REQUIRED: AI Provider
# ============================================
# Anthropic Claude API Key
# Get yours at: https://console.anthropic.com/
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# ============================================
# OPTIONAL: Pipeline-Specific Variables
# ============================================
# app-factory: RevenueCat (iOS monetization)
# REVENUECAT_PUBLIC_KEY_IOS=your_revenuecat_ios_key_here
# REVENUECAT_PUBLIC_KEY_ANDROID=your_revenuecat_android_key_here
# dapp-factory: Web3 Configuration
# NEXT_PUBLIC_WALLET_CONNECT_ID=your_wallet_connect_project_id
# NEXT_PUBLIC_ALCHEMY_API_KEY=your_alchemy_key_here
# agent-factory: OpenAI (for some agents)
# OPENAI_API_KEY=your_openai_api_key_here
# plugin-factory: MCP Server Configuration
# (varies by server - see individual server docs)
# miniapp-pipeline: Base Mini Apps
# NEXT_PUBLIC_CDP_API_KEY=your_cdp_api_key_here
# ============================================
# OPTIONAL: Development Settings
# ============================================
# Debug mode (enables verbose logging)
# DEBUG=true
# Override default port
# PORT=3000
# Override max tokens for AI calls
# APPFACTORY_MAX_TOKENS=16000
# ============================================
# SECURITY NOTES
# ============================================
# 1. NEVER commit .env files with real values
# 2. Use .env.local for local overrides
# 3. Rotate keys if accidentally committed
# 4. Use scoped API keys where possible