-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (26 loc) · 1.32 KB
/
.env.example
File metadata and controls
34 lines (26 loc) · 1.32 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
# Recon Magic Framework Environment Variables
# Copy this file to .env and fill in your values
# ============================================================================
# LLM Provider API Keys
# ============================================================================
# The framework supports multiple model types. Configure the ones you need:
# Anthropic Claude (REQUIRED if using "type": "CLAUDE_CODE" in workflows)
# Get your key from: https://console.anthropic.com/
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# OpenCode (REQUIRED if using "type": "OPENCODE" in workflows)
# Configure based on your OpenCode setup
# OPENCODE_API_KEY=your_opencode_key_here
# Note: "type": "PROGRAM" runs shell commands directly and needs no API key
# Note: "type": "INHERIT" inherits configuration from parent
# ============================================================================
# Optional Configuration
# ============================================================================
# Skip permissions prompts in CI/CD environments
# Set to 'production' to enable --dangerously-skip-permissions flag for Claude Code
# RUNNER_ENV=production
# Custom timeout values (in milliseconds)
# Default is ~2.1 billion ms (~24 days)
# BASH_DEFAULT_TIMEOUT_MS=214748364
# BASH_MAX_TIMEOUT_MS=214748364
# Logging configuration
# LOG_LEVEL=INFO