view 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
line wrap: on
line source

# Connector Service Configuration - DEVELOPMENT TEMPLATE
#
# Copy this placeholder file to connectors/.config and fill in local values.
# The real .config is ignored by Mercurial and is the default runtime source.
#
#   cp connectors/.config.development connectors/.config

DATABASE=connectors/connectors.db

# Existing Zenbu database containing users and auth_sessions.
AUTH_DATABASE=mrjunejune/data/mrjunejune.db

# Must exactly match mrjunejune AUTH_COOKIE_SECRET (hex, at least 32 bytes).
AUTH_COOKIE_SECRET=REPLACE_WITH_ZENBU_AUTH_COOKIE_SECRET_HEX
AUTH_SESSION_IDLE_TTL=604800

SERVER_HOST=127.0.0.1
SERVER_PORT=6981
STATIC_DIR=connectors

GOOGLE_CLIENT_ID=REPLACE_WITH_GOOGLE_CLIENT_ID
GOOGLE_CLIENT_SECRET=REPLACE_WITH_GOOGLE_CLIENT_SECRET
GOOGLE_REDIRECT_URI=http://127.0.0.1:6981/v1/oauth/google/callback

MASTER_KEY_VERSION=1
# 32 random bytes, unpadded base64url. Example generation:
# openssl rand 32 | openssl base64 -A | tr '+/' '-_' | tr -d '='
MASTER_KEY_BASE64URL=REPLACE_WITH_32_BYTE_BASE64URL_KEY