mirror of
https://github.com/sudoxnym/connectd.git
synced 2026-05-23 05:56:27 +00:00
35 lines
724 B
Text
35 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>
|