decentralised message store
1# use ":memory:" if you want an in-memory store, or "file:path/to/file.db" for an embedded file on the server.
2# if remote, it must point to a sqlite (libsql) db (for now).
3# defaults to ":memory:"
4DB_URL=":memory:"
5
6# may omit if you're storing locally (in memory or on file).
7AUTH_TOKEN=
8
9# optional, for at-rest encryption of the contents of your shard. if omitted, no encryption at rest is performed.
10ENC_PASSPHRASE=
11
12# port for the shard server to run on. defaults to 7337.
13SERVER_PORT="7337"