A minimal AT Protocol Personal Data Server written in JavaScript.
atproto pds
at main 21 lines 534 B view raw
1# PDS Authentication 2PDS_PASSWORD=your_pds_password_here 3JWT_SECRET=your_jwt_secret_here 4 5# Node.js-specific (not needed for Cloudflare) 6PDS_DB_PATH=./pds.db 7PDS_BLOBS_DIR=./blobs 8PORT=3000 9 10# Optional: Your PDS hostname (for production) 11# HOSTNAME=pds.example.com 12 13# Optional: AppView for proxying requests 14# APPVIEW_URL=https://api.bsky.app 15# APPVIEW_DID=did:web:api.bsky.app 16 17# Optional: Relay for firehose 18# RELAY_URL=https://bsky.network 19 20# Cloudflare-specific (not needed for Node.js) 21# CLOUDFLARE_API_TOKEN=your_api_token_here