-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (30 loc) · 714 Bytes
/
Copy path.env.example
File metadata and controls
37 lines (30 loc) · 714 Bytes
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
# Server Configuration
PORT=3000
NODE_ENV=development
HOST=0.0.0.0
# Security
SESSION_SECRET=your-secret-key-here
CORS_ORIGIN=*
# Claude Code Integration
CLAUDE_CODE_PATH=/usr/local/bin/claude
PROJECTS_ROOT_PATH=/home/pi/projects
DEFAULT_SHELL=/bin/bash
# Logging
LOG_LEVEL=info
LOG_FILE=./logs/app.log
# System Monitoring
ENABLE_SYSTEM_MONITORING=true
MONITORING_INTERVAL=5000
# Performance Tuning
MAX_CONCURRENT_SESSIONS=5
TERMINAL_BUFFER_SIZE=10000
WEBSOCKET_PING_TIMEOUT=60000
WEBSOCKET_PING_INTERVAL=25000
# Authentication (Optional)
ENABLE_AUTH=false
USERNAME=admin
PASSWORD=admin123
# Features
ENABLE_FILE_UPLOAD=true
MAX_FILE_SIZE=10MB
ALLOWED_FILE_TYPES=.txt,.md,.js,.py,.json,.yml,.yaml,.toml,.env