my monorepo for atproto based applications
1# Whichever port you want to run this on
2FEEDGEN_PORT=3000
3
4# Change this to use a different bind address
5FEEDGEN_LISTENHOST="localhost"
6
7# Set to something like db.sqlite to store persistently
8FEEDGEN_SQLITE_LOCATION=":memory:"
9
10# Don't change unless you're working in a different environment than the primary Bluesky network
11FEEDGEN_SUBSCRIPTION_ENDPOINT="wss://bsky.network"
12
13# Set this to the hostname that you intend to run the service at
14FEEDGEN_HOSTNAME="example.com"
15
16# Set this to the DID of the account you'll use to publish the feed
17# You can find your accounts DID by going to
18# https://bsky.social/xrpc/com.atproto.identity.resolveHandle?handle=${YOUR_HANDLE}
19FEEDGEN_PUBLISHER_DID="did:plc:abcde...."
20
21# Only use this if you want a service did different from did:web
22# FEEDGEN_SERVICE_DID="did:plc:abcde..."
23
24# Delay between reconnect attempts to the firehose subscription endpoint (in milliseconds)
25FEEDGEN_SUBSCRIPTION_RECONNECT_DELAY=3000