-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
41 lines (29 loc) · 1.06 KB
/
.env.example
File metadata and controls
41 lines (29 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
33
34
35
36
37
38
39
40
41
# Crier configuration
# Copy to .env and fill in your values.
# Telegram bot token (from @BotFather)
CRIER_TELEGRAM_BOT_TOKEN=123456:ABC-DEF...
# Your Telegram user ID (for DM authorization)
CRIER_TELEGRAM_OWNER_ID=123456789
# Repos to watch (comma-separated owner/repo)
CRIER_REPOS=OpenAdaptAI/OpenAdapt,OpenAdaptAI/openadapt-evals
# GitHub token (for API polling)
CRIER_GITHUB_TOKEN=ghp_...
# Poll interval in seconds (default: 60)
CRIER_POLL_INTERVAL=60
# Interestingness threshold (0-10, default: 5)
CRIER_INTEREST_THRESHOLD=5
# Anthropic API key (for LLM-powered content generation)
CRIER_ANTHROPIC_API_KEY=sk-ant-...
# Discord webhook URL
CRIER_DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/...
# Twitter/X API credentials
CRIER_TWITTER_CONSUMER_KEY=...
CRIER_TWITTER_CONSUMER_SECRET=...
CRIER_TWITTER_ACCESS_TOKEN=...
CRIER_TWITTER_ACCESS_TOKEN_SECRET=...
# LinkedIn access token
CRIER_LINKEDIN_ACCESS_TOKEN=...
# Database path (default: ./crier.db)
CRIER_DB_PATH=./crier.db
# Dry run mode — preview without posting (default: false)
CRIER_DRY_RUN=false