-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 952 Bytes
/
.env.example
File metadata and controls
27 lines (22 loc) · 952 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
# ===================================================================
# ARLA ENVIRONMENT CONFIGURATION
# ===================================================================
# --- PostgreSQL Credentials ---
POSTGRES_USER=admin
POSTGRES_PASSWORD=password
POSTGRES_DB=agent_sim_db
# --- Application Service URLs ---
# Use the Docker service names for all inter-container communication.
DATABASE_URL=postgresql+asyncpg://admin:password@db:5432/agent_sim_db
MLFLOW_TRACKING_URI=http://mlflow:5000
MLFLOW_TRACKING_USERNAME=admin
MLFLOW_TRACKING_PASSWORD=password
MLFLOW_HTTP_REQUEST_TIMEOUT=10
# --- Optional Services ---
REDIS_URL=redis://redis:6379/0
# --- ARLA Infrastructure Configuration ---
# Use the threaded runner for local development on macOS to avoid asyncio errors.
ASYNC_RUNNER_MODE="threaded"
# --- OpenAI API Key (Developer must provide their own) ---
OPENAI_API_KEY=sk-{your_openai_api_key_here}
OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES