-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
51 lines (39 loc) · 1.68 KB
/
.env.example
File metadata and controls
51 lines (39 loc) · 1.68 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
# Environment Variables for MCP Task and Research Manager (TypeScript)
# Copy this to .env and customize for your environment
# ============================================================================
# Data Storage Configuration
# ============================================================================
# Directory for task data (relative to workspace root or absolute path)
# Default: .mcp-tasks
DATA_DIR=.mcp-tasks
# Workspace root directory (usually auto-detected)
# Only set if auto-detection fails
# MCP_WORKSPACE_ROOT=/path/to/workspace
# ============================================================================
# Logging Configuration
# ============================================================================
# Log level: trace, debug, info, warn, error, fatal
# Default: info
LOG_LEVEL=info
# Pretty print logs (for development)
# Default: false (JSON logs in production)
LOG_PRETTY=true
# ============================================================================
# Feature Flags
# ============================================================================
# Enable completion beep notification
# Default: false
ENABLE_COMPLETION_BEEP=false
# Beep frequency in Hz (Windows/Linux only)
# Default: 2500
BEEP_FREQUENCY=2500
# Beep duration in milliseconds
# Default: 1000
BEEP_DURATION=1000
# ============================================================================
# Security Notes
# ============================================================================
# ⚠️ NEVER commit .env file to version control!
# ⚠️ Add .env to .gitignore
# ⚠️ Never store API keys or secrets in this file
# ⚠️ This is a local-only MCP server (no network secrets needed)