decentralised sync engine
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# to tell if you're in dev or prod. defaults to dev. 13# if running in prod, set to 'production' 14NODE_ENV="development"