-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.sample
More file actions
37 lines (26 loc) · 904 Bytes
/
.env.sample
File metadata and controls
37 lines (26 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
PORT=5000
PGUSER=your_PGUSER
PGPASSWORD=your_PGPASSWORD
PGHOST=your_PGHOST
PGDATABASE=your_PGDATABASE
PGPORT=your_PGPORT
# Encryption key must be a base64-encoded 32-byte key
ENCRYPTION_KEY=your_base64_32byte_key
# BlueSky / Atproto configuration
BSKY_BASE_API_URL=https://api.bsky.app
# Client URL to which users are redirected after authentication
CLIENT_URL=https://your-frontend-url.com
# Base URL for the backend server
BASE_URL=https://your-backend-url.com
# JWT secret key for token exchange with client
JWT_SECRET=
# RSKY Feedgen URL
RSKY_FEEDGEN=
# RSKY API Key
RSKY_API_KEY=
# The Green List URI
MUTE_LIST_URI="at://did:plc:d2mkddsbmnrgr3domzg5qexf/app.bsky.graph.list/3kaaqcnnxi72w"
# Mute List Admin DID, default blackskyweb.xyz
MUTE_LIST_ADMIN_DID="did:plc:d2mkddsbmnrgr3domzg5qexf"
# How often to run the reconciliation process, defaults 5 mins
RECONCILIATION_INTERVAL_MS=300000