-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (24 loc) · 947 Bytes
/
Copy path.env.example
File metadata and controls
28 lines (24 loc) · 947 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
# --- Redis Connection ---
# The host and port of your Redis server.
REDIS_HOST=127.0.0.1
REDIS_PORT=6379
# Use REDIS_PASSWORD if your Redis instance requires authentication.
# REDIS_PASSWORD=your-secret-password
# Use REDIS_DB if you want to use a specific database index.
# REDIS_DB=0
# --- Queue Configuration ---
# The name of the BullMQ queue this executor will listen to.
# Must match the queue name used by the proxyburst-client.
QUEUE_NAME=request-queue
# --- Executor Performance ---
# The number of jobs this executor instance can process concurrently.
# Adjust based on the machine's CPU and network capacity.
AGENT_CONCURRENCY=50
# --- Identity & Logging ---
# A human-readable name for this executor or group of executors.
AGENT_NAME=default-executor
# The level of detail for logs (e.g., 'info', 'debug', 'warn', 'error').
LOG_LEVEL=info
# --- Health Check ---
# The port for the health check HTTP server.
HEALTH_CHECK_PORT=3000