mirror of
https://github.com/sudoxnym/connectd.git
synced 2026-04-14 19:46:30 +00:00
find isolated builders with aligned values and connect them. also finds lost builders - people with potential who haven't started yet. features: - multi-platform discovery (github, reddit, mastodon, lemmy, discord, etc) - values-based matching - lost builder detection and outreach - LLM-powered personalized intros - multi-channel delivery (email, mastodon, bluesky, matrix, discord, github) - fully autonomous daemon mode 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
34 lines
724 B
Text
34 lines
724 B
Text
# connectd environment variables
|
|
# copy to .env and fill in your values
|
|
|
|
# === REQUIRED FOR LLM DRAFTING ===
|
|
GROQ_API_KEY=
|
|
GROQ_MODEL=llama-3.1-70b-versatile
|
|
|
|
# === DISCOVERY SOURCES ===
|
|
# github (optional - works without token but rate limited)
|
|
GITHUB_TOKEN=
|
|
|
|
# mastodon (for DM delivery)
|
|
MASTODON_TOKEN=
|
|
MASTODON_INSTANCE=mastodon.social
|
|
|
|
# bluesky (for DM delivery)
|
|
BLUESKY_HANDLE=
|
|
BLUESKY_APP_PASSWORD=
|
|
|
|
# matrix (for DM delivery)
|
|
MATRIX_HOMESERVER=
|
|
MATRIX_USER_ID=
|
|
MATRIX_ACCESS_TOKEN=
|
|
|
|
# discord (for discovery + DM delivery)
|
|
DISCORD_BOT_TOKEN=
|
|
DISCORD_TARGET_SERVERS= # comma separated server IDs
|
|
|
|
# === EMAIL DELIVERY ===
|
|
SMTP_HOST=
|
|
SMTP_PORT=465
|
|
SMTP_USER=
|
|
SMTP_PASS=
|
|
FROM_EMAIL=connectd <connectd@yourdomain.com>
|