forked from ctangarife/pentest-ia
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenv.example
More file actions
45 lines (36 loc) · 1.04 KB
/
Copy pathenv.example
File metadata and controls
45 lines (36 loc) · 1.04 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
# Configuración de la Base de Datos
POSTGRES_DB=pentestia
POSTGRES_USER=pentestia
POSTGRES_PASSWORD=pentestia123
DATABASE_URL=postgresql://pentestia:pentestia123@postgres:5432/pentestia
# Configuración de Redis
REDIS_URL=redis://redis:6379
# Configuración de la API
API_HOST=0.0.0.0
API_PORT=8000
API_DEBUG=true
# Configuración del Frontend
VITE_API_URL=http://pentestia-brain:8000
VITE_APP_TITLE=PentestIA
# Configuración de Seguridad
SECRET_KEY=your-secret-key-here
JWT_SECRET_KEY=your-jwt-secret-key-here
JWT_ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
# Configuración de Logs
LOG_LEVEL=INFO
LOG_FILE=logs/pentestia.log
# Configuración de Servidores MCP
MCP_RECONNAISSANCE_URL=http://mcp-reconnaissance:8001
MCP_XSS_URL=http://mcp-xss:8002
# Configuración de Ollama (opcional)
OLLAMA_BASE_URL=http://ollama:11434
OLLAMA_MODEL=llama3.2:3b
# Configuración de Correo (opcional)
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=your-email@gmail.com
SMTP_PASSWORD=your-app-password
# Configuración de Monitoreo
ENABLE_METRICS=true
METRICS_PORT=9090