serverless #atproto jetstream to webhook connector, powered by cloudflare durable objects
1# Local development environment variables
2# Copy this file to .dev.vars and fill in your actual values
3#
4# Note: .dev.vars is gitignored for security
5
6# Comma-separated list of AT Protocol collections to watch
7# Examples:
8# - blue.2048.* (all 2048 game collections)
9# - app.bsky.feed.post (all Bluesky posts)
10# - app.bsky.graph.follow (all follows)
11JETSTREAM_COLLECTIONS=blue.2048.*,app.bsky.feed.post
12
13# Webhook URL where events will be sent
14WEBHOOK_URL=https://example.com/api/webhooks/jetstream-event
15
16
17# Webhook bearer token for authentication (optional)
18WEBHOOK_BEARER_TOKEN=your-bearer-token-here