-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (27 loc) · 1.63 KB
/
.env.example
File metadata and controls
34 lines (27 loc) · 1.63 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
# Copy this file to .env and fill in real values. Never commit the real .env.
# ── Supabase ─────────────────────────────────────────────────
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_ANON_KEY=
SUPABASE_SERVICE_ROLE_KEY=
# ── Bags ─────────────────────────────────────────────────────
BAGS_API_KEY=
LOG_BAGS_HTTP=false
# Optional default token image used when launch payload omits one
# BAGS_DEFAULT_TOKEN_IMAGE_URL=
# ── twitterapi.io (real-time tweets) ─────────────────────────
TWITTERAPI_IO_KEY=
# Same value used by twitterapi.io when calling our webhook (X-API-Key header)
TWITTERAPI_WEBHOOK_KEY=
# ── Optional: monitor sync handle list (comma-separated, no @) ──
# If unset, falls back to creators table, then a built-in default.
# TWITTER_TRACKED_HANDLES=elonmusk,vitalikbuterin,cz_binance
# ── Live metrics refresher tuning ────────────────────────────
METRICS_REFRESH_LIMIT=10
METRICS_REFRESH_INTERVAL_MS=600000
METRICS_REFRESH_MAX_AGE_HOURS=24
# Set to 1 to log a sample tweet shape on each refresh (debug only)
# METRICS_REFRESH_DEBUG=1
# ── Tweet retention ──────────────────────────────────────────
TWEET_RETENTION_DAYS=30
# Server port (Railway sets this automatically; locally defaults to 3001)
# PORT=3001