mirror of
https://github.com/sudoxnym/connectd.git
synced 2026-04-14 19:46:30 +00:00
- add LEMMY_INSTANCE, LEMMY_USERNAME, LEMMY_PASSWORD env vars - add send_lemmy_dm() for private message delivery - add lemmy as activity-based contact method - user's instance prioritized in scraping 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
39 lines
825 B
Text
39 lines
825 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
|
|
|
|
# lemmy (for authenticated access to your instance)
|
|
LEMMY_INSTANCE=
|
|
LEMMY_USERNAME=
|
|
LEMMY_PASSWORD=
|
|
|
|
# === EMAIL DELIVERY ===
|
|
SMTP_HOST=
|
|
SMTP_PORT=465
|
|
SMTP_USER=
|
|
SMTP_PASS=
|
|
FROM_EMAIL=connectd <connectd@yourdomain.com>
|