-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (23 loc) · 1.04 KB
/
Copy path.env.example
File metadata and controls
28 lines (23 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
# Copy to .env. Keep actual secrets in ignored files under data/secrets/.
# Do not commit .env or data/.
# Optional: set only when using docker-compose.image.yml to pull a published
# image instead of building locally. Use a specific versioned tag, not latest.
# CODEX_CLI_PROVIDER_IMAGE=registry.example.com/your-org/codex-cli-provider:codex-cli-provider-0.1.2
PROXY_API_KEY_FILE=data/secrets/proxy_api_key
CODEX_HOME=/root/.codex
CODEX_WORK_DIR=/workspace
CODEX_BIN=codex
CODEX_UPSTREAM_MODEL=
CODEX_REQUEST_TIMEOUT_SECONDS=180
DASHBOARD_ENABLED=true
# Defaults are conservative. For large LLM Wiki lint prompts, raise these up to
# MAX_REQUEST_BODY_BYTES=2000000 and MAX_TOTAL_TEXT_CHARS=500000.
MAX_REQUEST_BODY_BYTES=262144
MAX_MESSAGES=32
MAX_TOTAL_TEXT_CHARS=80000
# Local admission queue for short bursts while preserving one active Codex run.
# 0 fails fast with wrapper_busy 429. Values above 0 wait up to that many
# seconds for the active run to finish. The app clamps this to 0-5 seconds.
QUEUE_WAIT_SECONDS=0
CORS_ALLOWED_ORIGINS=
LOG_LEVEL=INFO