-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
25 lines (23 loc) · 808 Bytes
/
Copy path.env.example
File metadata and controls
25 lines (23 loc) · 808 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
# ========================================
# CONFIGURACIÓN DEL SERVIDOR
# ========================================
# Host del servidor WebSocket (localhost para desarrollo, 0.0.0.0 para red local)
HOST=localhost
# Puerto del servidor WebSocket
PORT=8765
# ========================================
# SIMULACIÓN DE COMPORTAMIENTO HUMANO
# ========================================
# Delay mínimo entre teclas (segundos)
MIN_TYPING_DELAY=0.05
# Delay máximo entre teclas (segundos)
MAX_TYPING_DELAY=0.15
# Tiempo mínimo antes de escribir (segundos)
START_DELAY_MIN=0.5
# Tiempo máximos antes de escribir (segundos)
START_DELAY_MAX=1.5
# ========================================
# NIVEL DE LOGGING
# ========================================
# Niveles: DEBUG, INFO, WARNING, ERROR, CRITICAL
LOG_LEVEL=INFO