mirror of
https://git.witchcraft.systems/scientific-witchery/pds-dash.git
synced 2025-06-07 23:44:04 +10:00
16 lines
No EOL
456 B
TypeScript
16 lines
No EOL
456 B
TypeScript
/**
|
|
* Configuration module for the PDS Dashboard
|
|
*/
|
|
export class Config {
|
|
/**
|
|
* The base URL of the PDS (Personal Data Server)
|
|
* @default "https://pds.witchcraft.systems"
|
|
*/
|
|
static readonly PDS_URL: string = "https://pds.witchcraft.systems";
|
|
|
|
/**
|
|
* The base URL of the frontend service for linking to replies
|
|
* @default "https://deer.social"
|
|
*/
|
|
static readonly FRONTEND_URL: string = "https://deer.social";
|
|
} |