# Social Runtime Crawler — environment # Copy to .env (never commit .env). No platform passwords belong here or anywhere in the repo: # authentication is done by a human once in the headed browser (`pnpm login `). # PostgreSQL (prototype storage). Leave empty to run with the JSONL-only store. SRC_DATABASE_URL=postgres://localhost:5432/social_runtime # Where browser profiles, session logs and learned platform models live. SRC_DATA_DIR=./data # LLM planner (Tier 4). If no provider is configured the heuristic planner (Tier 1) is used alone. # anthropic → uses ANTHROPIC_API_KEY (or an `ant auth login` profile) # local → OpenAI-compatible local endpoint (e.g. llm-api.io on the MacLustr cluster) # none → heuristic only SRC_LLM_PROVIDER=none SRC_LLM_MODEL=claude-opus-5 # ANTHROPIC_API_KEY= # SRC_LOCAL_LLM_URL=https://www.llm-api.io/v1 # SRC_LOCAL_LLM_KEY= # SRC_LOCAL_LLM_MODEL= # Browser SRC_HEADLESS=false SRC_BROWSER_CHANNEL=chromium # Dashboard SRC_DASHBOARD_PORT=8340