Mercurial
comparison connectors/.config.development @ 279:b3b547563ec7
Add Google connector service and agent wiki
Implement the C/Seobeo Google Drive and Gmail connector with encrypted OAuth storage, Zenbu authentication, browser testing, AI tool discovery, chunked HTTP decoding, and Bazel coverage. Consolidate repository guidance into progressive wiki documentation and enforce arena-first allocation for new first-party C code.
Co-authored-by: Copilot <[email protected]>
Copilot-Session: 84c338fd-0939-4bb3-b7f3-1062eb213e5d
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 17 Aug 2026 22:22:36 -0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 278:8d560f50ed4c | 279:b3b547563ec7 |
|---|---|
| 1 # Connector Service Configuration - DEVELOPMENT TEMPLATE | |
| 2 # | |
| 3 # Copy this placeholder file to connectors/.config and fill in local values. | |
| 4 # The real .config is ignored by Mercurial and is the default runtime source. | |
| 5 # | |
| 6 # cp connectors/.config.development connectors/.config | |
| 7 | |
| 8 DATABASE=connectors/connectors.db | |
| 9 | |
| 10 # Existing Zenbu database containing users and auth_sessions. | |
| 11 AUTH_DATABASE=mrjunejune/data/mrjunejune.db | |
| 12 | |
| 13 # Must exactly match mrjunejune AUTH_COOKIE_SECRET (hex, at least 32 bytes). | |
| 14 AUTH_COOKIE_SECRET=REPLACE_WITH_ZENBU_AUTH_COOKIE_SECRET_HEX | |
| 15 AUTH_SESSION_IDLE_TTL=604800 | |
| 16 | |
| 17 SERVER_HOST=127.0.0.1 | |
| 18 SERVER_PORT=6981 | |
| 19 STATIC_DIR=connectors | |
| 20 | |
| 21 GOOGLE_CLIENT_ID=REPLACE_WITH_GOOGLE_CLIENT_ID | |
| 22 GOOGLE_CLIENT_SECRET=REPLACE_WITH_GOOGLE_CLIENT_SECRET | |
| 23 GOOGLE_REDIRECT_URI=http://127.0.0.1:6981/v1/oauth/google/callback | |
| 24 | |
| 25 MASTER_KEY_VERSION=1 | |
| 26 # 32 random bytes, unpadded base64url. Example generation: | |
| 27 # openssl rand 32 | openssl base64 -A | tr '+/' '-_' | tr -d '=' | |
| 28 MASTER_KEY_BASE64URL=REPLACE_WITH_32_BYTE_BASE64URL_KEY |