spb/social-runtime-crawler
Public
TypeScript 91.8%
HTML 3.2%
JavaScript 3%
SQL 1.4%
CSS 0.7%
1# Social Runtime Crawler — environment2# Copy to .env (never commit .env). No platform passwords belong here or anywhere in the repo:3# authentication is done by a human once in the headed browser (`pnpm login <platform>`).45# PostgreSQL (prototype storage). Leave empty to run with the JSONL-only store.6SRC_DATABASE_URL=postgres://localhost:5432/social_runtime78# Where browser profiles, session logs and learned platform models live.9SRC_DATA_DIR=./data1011# LLM planner (Tier 4). If no provider is configured the heuristic planner (Tier 1) is used alone.12# anthropic → uses ANTHROPIC_API_KEY (or an `ant auth login` profile)13# local → OpenAI-compatible local endpoint (e.g. llm-api.io on the MacLustr cluster)14# none → heuristic only15SRC_LLM_PROVIDER=none16SRC_LLM_MODEL=claude-opus-517# ANTHROPIC_API_KEY=18# SRC_LOCAL_LLM_URL=https://www.llm-api.io/v119# SRC_LOCAL_LLM_KEY=20# SRC_LOCAL_LLM_MODEL=2122# Browser23SRC_HEADLESS=false24SRC_BROWSER_CHANNEL=chromium2526# Dashboard27SRC_DASHBOARD_PORT=834028