work-in-progress atproto PDS
typescript atproto pds atcute
at trunk 20 lines 428 B view raw
1import type * as bsky from '@atproto/bsky'; 2 3export type PlcConfig = { 4 port?: number; 5 version?: string; 6 dbPostgresUrl?: string; 7 dbPostgresSchema?: string; 8}; 9 10export type BskyConfig = Partial<bsky.ServerConfig> & { 11 plcUrl: string; 12 repoProvider: string; 13 dbPostgresUrl: string; 14 dbPostgresSchema: string; 15 redisHost: string; 16 pdsPort: number; 17 serviceHandleDomains?: string[]; 18 migration?: string; 19 privateKey?: string; 20};