-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
44 lines (37 loc) · 862 Bytes
/
Copy path.env.example
File metadata and controls
44 lines (37 loc) · 862 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
38
39
40
41
42
43
44
# PostgreSQL
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_USER=detonate
POSTGRES_PASSWORD=detonate
POSTGRES_DB=detonate
# Redis
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_URL=redis://localhost:6379/0
# MinIO (S3-compatible)
MINIO_HOST=localhost
MINIO_PORT=9000
MINIO_ROOT_USER=detonate
MINIO_ROOT_PASSWORD=detonatedev
MINIO_BUCKET=samples
MINIO_SECURE=false
# API
API_HOST=0.0.0.0
API_PORT=8000
API_CORS_ORIGINS=["http://localhost:3000"]
# Frontend
NEXT_PUBLIC_API_URL=http://localhost:8000
# File upload
MAX_FILE_SIZE=268435456
# AI / LLM
AI_ENABLED=true
LLM_PROVIDER=ollama
OLLAMA_BASE_URL=http://localhost:11434
OLLAMA_MODEL=qwen2.5:3b
# ANTHROPIC_API_KEY=sk-ant-...
# ANTHROPIC_MODEL=claude-sonnet-4-20250514
LLM_MAX_TOKENS=4096
LLM_TEMPERATURE=0.3
# Suricata IDS (offline PCAP analysis)
SURICATA_ENABLED=false
SURICATA_IMAGE=detonate-suricata