Configuration options

This commit is contained in:
Astra 2025-04-20 15:04:51 +09:00
parent fe96164f4e
commit 164571ec19
No known key found for this signature in database
2 changed files with 20 additions and 3 deletions

16
config.ts Normal file
View file

@ -0,0 +1,16 @@
/**
* 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";
}