decentralised sync engine
at main 1.3 kB view raw
1# port for the lattice server to run on. 2# defaults to 7338. 3SERVER_PORT="7338" 4 5# used for verifying inter-service jwts 6# you *must* specify a did at which this shard may be found. may also include a service identifier. 7# for more information on the service identifier, you may see https://atproto.com/specs/xrpc#inter-service-authentication-jwt 8# usually a did:web, but if you're crazy you can put a did:plc, the verifier supports either anyway. 9# defaults to did:web:localhost 10SERVICE_DID="did:web:localhost" 11 12# constellation instance. provide the full url. 13# defaults to the public microcosm.blue constellation instance. 14CONSTELLATION_URL="https://constellation.microcosm.blue/" 15 16# required. 17# owner did 18# used to verify ownership of this lattice and its related channels 19OWNER_DID= 20 21# to tell if you're in dev or prod. defaults to dev. 22# if running in prod, set to 'production' 23NODE_ENV="development" 24 25# required. defaults to gemstone's jetstream. 26# prism is basically jetstream. 27# for now, we use our own instance of jetstream, but in future, it will be a re-implementation of jetstream called prism. 28# https://tangled.org/@gmstn.systems/prism 29# must be full 'wss://' url, including the path to the subscribe endpoint 30PRISM_URL="wss://jetstream.gmstn.systems/subscribe"