-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (24 loc) · 1.06 KB
/
.env.example
File metadata and controls
32 lines (24 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copy this to .env for local development (never commit .env)
# All of these are GitHub Actions Secrets in production.
# LLM — use ONE of these (Groq is free, Anthropic requires paid API account)
# Groq free tier: console.groq.com
GROQ_API_KEY=gsk_...
# Anthropic API (separate from Claude Pro): console.anthropic.com
# ANTHROPIC_API_KEY=sk-ant-...
# Optional — email delivery via Resend (free tier: 3000 emails/month)
RESEND_API_KEY=re_...
DIGEST_EMAIL_TO=you@example.com,colleague@example.com
DIGEST_EMAIL_FROM=Argus <digest@yourdomain.com>
# Optional — Reddit (free read-only access)
# Create an app at https://reddit.com/prefs/apps (script type)
REDDIT_CLIENT_ID=
REDDIT_CLIENT_SECRET=
# Optional — Semantic Scholar (raises rate limits)
# Register at https://www.semanticscholar.org/product/api
SEMANTIC_SCHOLAR_API_KEY=
# Optional — Slack delivery
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/...
# Optional — used for Slack link-to-digest
REPO_URL=https://github.com/your-username/argus
# Set to "false" to skip git push during local testing
GIT_PUSH=false