File size: 1,127 Bytes
d3ca6ed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# ARF Demo Configuration
# Copy this file to .env and modify values as needed

# ===== System Mode =====
# Options: demo, oss, enterprise
ARF_MODE=demo

# Use mock ARF implementation (true for demo, false for real ARF)
USE_MOCK_ARF=true

# ===== ARF Integration =====
# Required for enterprise mode
ARF_API_KEY=your_api_key_here
ARF_BASE_URL=https://api.arf.dev

# ===== Business Configuration =====
# Engineer costs (USD)
ENGINEER_HOURLY_RATE=150
ENGINEER_ANNUAL_COST=125000

# Default savings rate with ARF (0.0 to 1.0)
DEFAULT_SAVINGS_RATE=0.82

# ===== UI Configuration =====
# Auto-refresh interval in seconds
AUTO_REFRESH_SECONDS=30

# Maximum history items to keep
MAX_HISTORY_ITEMS=100

# ===== Demo Configuration =====
# Default incident scenario
DEFAULT_SCENARIO=Cache Miss Storm

# Path to scenario configuration files
SCENARIO_CONFIG_PATH=config/scenarios

# ===== Safety Configuration =====
# Default safety mode: advisory, approval, autonomous
DEFAULT_SAFETY_MODE=advisory

# Require human approval for execution
REQUIRE_APPROVAL=true

# ===== Logging =====
# Log level: DEBUG, INFO, WARNING, ERROR
LOG_LEVEL=INFO