mirror of
https://github.com/openswarm-ai/openswarm.git
synced 2026-09-20 16:47:40 +02:00
30 lines
1.5 KiB
Bash
30 lines
1.5 KiB
Bash
# =============================================================================
|
|
# Backend Server
|
|
# =============================================================================
|
|
BACKEND_PORT=8324
|
|
|
|
GOOGLE_OAUTH_CLIENT_ID=your-google-oauth-client-id.apps.googleusercontent.com
|
|
GOOGLE_OAUTH_CLIENT_SECRET=your-google-oauth-client-secret
|
|
|
|
# =============================================================================
|
|
# macOS Code Signing & Notarization (required for ./scripts/build-app.sh --publish)
|
|
# =============================================================================
|
|
APPLE_ID=your-apple-id@example.com
|
|
APPLE_APP_SPECIFIC_PASSWORD=xxxx-xxxx-xxxx-xxxx
|
|
APPLE_TEAM_ID=ABCDE12345
|
|
|
|
# =============================================================================
|
|
# GitHub Releases (required for --publish)
|
|
# =============================================================================
|
|
GH_TOKEN=ghp_your-github-personal-access-token
|
|
|
|
# =============================================================================
|
|
# Telegram MCP (app-level credentials, NOT per-user)
|
|
# =============================================================================
|
|
# Register an app once at https://my.telegram.org/apps (Platform: Desktop).
|
|
# These identify OpenSwarm itself to Telegram; end users sign in with their
|
|
# own phone + OTP, never these values. Per Telegram TOS keep the hash secret —
|
|
# never commit it. Rotate via the same page if it ever leaks.
|
|
OPENSWARM_TELEGRAM_API_ID=
|
|
OPENSWARM_TELEGRAM_API_HASH=
|