2023-05-19 10:31:39 -05:00
|
|
|
# Whichever port you want to run this on
|
2023-05-12 04:26:10 +01:00
|
|
|
FEEDGEN_PORT=3000
|
2023-05-19 10:31:39 -05:00
|
|
|
|
2023-05-24 18:53:37 -04:00
|
|
|
# Change this to use a different bind address
|
|
|
|
FEEDGEN_LISTENHOST="localhost"
|
|
|
|
|
2023-05-19 10:31:39 -05:00
|
|
|
# Set to something like db.sqlite to store persistently
|
2023-05-12 04:26:10 +01:00
|
|
|
FEEDGEN_SQLITE_LOCATION=":memory:"
|
2023-05-19 10:31:39 -05:00
|
|
|
|
|
|
|
# Don't change unless you're working in a different environment than the primary Bluesky network
|
2023-11-22 01:17:40 +09:00
|
|
|
FEEDGEN_SUBSCRIPTION_ENDPOINT="wss://bsky.network"
|
2023-05-19 10:31:39 -05:00
|
|
|
|
|
|
|
# Set this to the hostname that you intend to run the service at
|
|
|
|
FEEDGEN_HOSTNAME="example.com"
|
|
|
|
|
2023-05-30 20:20:04 -05:00
|
|
|
# Set this to the DID of the account you'll use to publish the feed
|
|
|
|
# You can find your accounts DID by going to
|
|
|
|
# https://bsky.social/xrpc/com.atproto.identity.resolveHandle?handle=${YOUR_HANDLE}
|
|
|
|
FEEDGEN_PUBLISHER_DID="did:plc:abcde...."
|
|
|
|
|
2023-05-19 10:31:39 -05:00
|
|
|
# Only use this if you want a service did different from did:web
|
2023-06-16 05:52:04 +08:00
|
|
|
# FEEDGEN_SERVICE_DID="did:plc:abcde..."
|
|
|
|
|
|
|
|
# Delay between reconnect attempts to the firehose subscription endpoint (in milliseconds)
|
|
|
|
FEEDGEN_SUBSCRIPTION_RECONNECT_DELAY=3000
|