38 lines
1 KiB
Plaintext
38 lines
1 KiB
Plaintext
# Copy to config/env.local and edit as needed
|
|
SOCK="amduatd.sock"
|
|
BASE="http://localhost"
|
|
SPACE="app1"
|
|
|
|
# Optional daemon startup defaults (used by scripts/dev_start_daemon.sh)
|
|
STORE_ROOT=".amduat-asl"
|
|
STORE_BACKEND="index"
|
|
# For index backend, run a startup write probe and fallback to fs if broken.
|
|
INDEX_BACKEND_PROBE="1"
|
|
INDEX_BACKEND_FALLBACK="fs"
|
|
# Attempt one-time index root repair (backup + index init --force) before fs fallback.
|
|
INDEX_BACKEND_REPAIR="1"
|
|
FS_FALLBACK_STORE_ROOT=".amduat-asl-fs"
|
|
# AMDUATD_BIN="/path/to/amduatd"
|
|
# ASL_BIN="/path/to/amduat-asl"
|
|
|
|
# Incremental sync configuration
|
|
SYNC_LIMIT="200"
|
|
SYNC_WAIT_MS="15000"
|
|
CURSOR_FILE=".cursor"
|
|
|
|
# Retry policy (applies to retryable server/internal failures)
|
|
RETRY_MAX_ATTEMPTS="4"
|
|
RETRY_INITIAL_MS="200"
|
|
RETRY_MAX_MS="2000"
|
|
|
|
# Curl timeouts
|
|
CURL_CONNECT_TIMEOUT_SECONDS="2"
|
|
CURL_MAX_TIME_SECONDS="30"
|
|
|
|
# Optional Ollama AI settings
|
|
OLLAMA_HOST="http://127.0.0.1:11434"
|
|
OLLAMA_MODEL="qwen2.5-coder:7b"
|
|
OLLAMA_TIMEOUT_SECONDS="60"
|
|
AI_CONTEXT_MAX_CHARS="12000"
|
|
AI_EVIDENCE_MAX_EDGES="5"
|