/ .envrc
.envrc
 1  # Load Nix shell environment
 2  use nix
 3  
 4  # Load environment variables from .env if it exists
 5  dotenv_if_exists
 6  
 7  # Database configuration (Docker on port 5433 to avoid conflicts)
 8  export DB_HOST=localhost
 9  export DB_USER=echo_org
10  export DB_PASSWORD=postgres
11  export DB_PORT=5433
12  export DB_NAME=echo_org
13  export DB_POOL_SIZE=5
14  
15  # Redis configuration (Docker on port 6383 to avoid conflicts)
16  export REDIS_HOST=localhost
17  export REDIS_PORT=6383
18  
19  # Agent configuration
20  export AUTONOMOUS_BUDGET_LIMIT=1000000
21  
22  # Mix environment
23  export MIX_ENV=dev
24  
25  echo "✓ ECHO environment loaded"