See the best posts from any Bluesky account
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add firehose env vars to the Vine schema

FIREHOSE_WEBHOOK_URL_1K and _10K are the per-threshold Discord webhook
targets; FIREHOSE_JETSTREAM_URL is an optional override for the firehose
consumer jetstream endpoint. All optional so existing deployments keep
booting before Phase 2 lands.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+5
+5
start/env.ts
··· 41 41 // Jetstream (worker only) 42 42 JETSTREAM_URL: Env.schema.string.optional(), 43 43 44 + // Firehose virality webhook (worker + threshold job) 45 + FIREHOSE_WEBHOOK_URL_1K: Env.schema.string.optional(), 46 + FIREHOSE_WEBHOOK_URL_10K: Env.schema.string.optional(), 47 + FIREHOSE_JETSTREAM_URL: Env.schema.string.optional(), 48 + 44 49 // Backfill 45 50 BACKFILL_MAX_POSTS: Env.schema.number.optional(), 46 51