-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
72 lines (47 loc) · 2.2 KB
/
Copy path.env.example
File metadata and controls
72 lines (47 loc) · 2.2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# ============================================================================
# InformaticaProjectAnalysis — Environment Configuration
# ============================================================================
# Copy this file to .env and fill in the values.
# Never commit .env to version control.
# ============================================================================
# --- Required -----------------------------------------------------------
# Anthropic API key for Claude-powered analysis (Phases 1.3, 2, 3)
ANTHROPIC_API_KEY=your-api-key-here
# Secret key for session cookie signing (change from default in production)
SECRET_KEY=change-this-to-a-random-secret
# --- Server --------------------------------------------------------------
# Port for the FastAPI backend
PORT=8090
# Host binding (0.0.0.0 for Docker, 127.0.0.1 for local dev)
HOST=127.0.0.1
# --- Database -------------------------------------------------------------
# SQLite database path (relative to repo root or absolute)
DB_PATH=app/data/analysis.db
# --- Claude Model ---------------------------------------------------------
# Model to use for AI-assisted analysis
CLAUDE_MODEL=claude-sonnet-4-20250514
# --- Watcher Mode ---------------------------------------------------------
# Enable/disable project config watcher
WATCHER_ENABLED=false
# Directory to watch for *.project.yaml files
WATCHER_DIR=./watch
# Poll interval in seconds
WATCHER_POLL_INTERVAL_SECS=30
# --- Output ---------------------------------------------------------------
# Directory for strategy document output (PDF, Excel, JSON)
OUTPUT_DIR=./output
# --- Security --------------------------------------------------------------
# CORS allowed origins (comma-separated; empty = same-origin only)
CORS_ORIGINS=
# HTTPS mode (enables HSTS header)
HTTPS=false
# --- Notifications ---------------------------------------------------------
# Webhook URL for Slack/Teams notifications (optional)
WEBHOOK_URL=
# HMAC-SHA256 secret for webhook request signing (optional)
WEBHOOK_SECRET=
# Webhook timeout in seconds
WEBHOOK_TIMEOUT_SECS=10
# --- Logging ---------------------------------------------------------------
# Log level (DEBUG, INFO, WARNING, ERROR)
LOG_LEVEL=INFO