this repo has no description
1/** 2 * Configuration module for the PDS Dashboard 3 */ 4export class Config { 5 /** 6 * The base URL of the PDS (Personal Data Server) 7 * @default "https://pds.witchcraft.systems" 8 */ 9 static readonly PDS_URL: string = "https://pds.witchcraft.systems"; 10 11 /** 12 * The base URL of the frontend service for linking to replies 13 * @default "https://deer.social" 14 */ 15 static readonly FRONTEND_URL: string = "https://deer.social"; 16 17 /** 18 * Maximum number of posts to fetch from the PDS per user 19 * @default 10 20 */ 21 static readonly MAX_POSTS_PER_USER: number = 22; 22 23 /** 24 * Footer text for the dashboard 25 * @default "Astrally projected from witchcraft.systems" 26 */ 27 static readonly FOOTER_TEXT: string = "Astrally projected from <a href='https://witchcraft.systems' target='_blank'>witchcraft.systems</a>"; 28}