-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy path.env.example
More file actions
36 lines (28 loc) · 1.09 KB
/
.env.example
File metadata and controls
36 lines (28 loc) · 1.09 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
# Slack Configuration (optional)
SLACK_WEBHOOK_URL=
# GitHub Configuration (required for GitHub scraping)
GITHUB_TOKEN=your_github_personal_access_token_here
# GitHub Repository to scrape discussions/issues from (format: owner/repo)
# Note: In local .env use GITHUB_REPO, but GitHub Secrets must use GH_REPO (GitHub restriction)
GITHUB_REPO=Factory-AI/factory
# Apify Configuration (required for Twitter scraping)
APIFY_TOKEN=your_apify_api_token_here
# Twitter/X Team Members (comma-separated usernames to filter out)
TEAM_TWITTER_USERNAMES=FactoryAI
# Polling Configuration
POLL_INTERVAL_MINUTES=10
# Port for local development server
PORT=3000
# Factory / GLM classification
FACTORY_API_KEY=
MODEL_ID=glm-4.6
MODEL_REASONING=low
# Legacy fallbacks (optional)
GLM_MODEL_ID=
GLM_REASONING=
CLASSIFIER_MAX_BATCH=10
# Supabase Configuration (for persistent storage and auth)
# Get these from: https://supabase.com/dashboard/project/_/settings/api
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_SERVICE_KEY=your_service_role_key_here
# Note: SUPABASE_ANON_KEY is used in frontend (public, safe to expose)