-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
54 lines (43 loc) · 1.48 KB
/
Copy path.env.example
File metadata and controls
54 lines (43 loc) · 1.48 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
# StackUnderflow Configuration
# Memory Cache Settings
# Maximum number of projects to keep in memory cache
CACHE_MAX_PROJECTS=5
# Maximum size in MB for a single project in memory cache
# Projects larger than this will not be cached
CACHE_MAX_MB_PER_PROJECT=500
# Number of recent projects to pre-warm on server startup
CACHE_WARM_ON_STARTUP=3
# Frontend Settings
# Number of messages to load when user clicks on Messages tab
MESSAGES_INITIAL_LOAD=1000
# Enable memory monitoring in browser console (shows memory usage breakdown)
# Note: This uses JSON.stringify which can slow down the app with large datasets
ENABLE_MEMORY_MONITOR=false
# Logging Configuration
# Set the logging level: DEBUG, INFO, WARNING, ERROR, CRITICAL
# Default: INFO
LOG_LEVEL=INFO
# Background Processing
# Automatically process all projects in the background to cache their stats
# This enables instant loading of stats for all projects in the overview
# Default: true
ENABLE_BACKGROUND_PROCESSING=true
# Examples:
# For a system with lots of RAM and fast disk:
# CACHE_MAX_PROJECTS=10
# CACHE_MAX_MB_PER_PROJECT=1000
# CACHE_WARM_ON_STARTUP=5
# MESSAGES_INITIAL_LOAD=2000
# For a constrained system:
# CACHE_MAX_PROJECTS=3
# CACHE_MAX_MB_PER_PROJECT=200
# CACHE_WARM_ON_STARTUP=1
# MESSAGES_INITIAL_LOAD=500
# Agent simulation (optional — for AI-powered discussions)
GROQ_API_KEY=
OPENROUTER_API_KEY=
# Share to R2 (optional — for dashboard sharing)
R2_ENDPOINT=
R2_ACCESS_KEY_ID=
R2_SECRET_ACCESS_KEY=
R2_BUCKET_NAME=