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 show in the feed (across all users)
19 * @default 100
20 */
21 static readonly MAX_POSTS: number = 100;
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}