This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
scoresaber-reloadedv3/projects/common/src/config.ts
Liam c43f27a6ac
Some checks failed
Deploy Backend / deploy (push) Failing after 1m36s
Deploy Website / deploy (push) Successful in 5m7s
fix bot secret
2024-10-17 18:32:11 +01:00

14 lines
335 B
TypeScript

export const Config = {
/**
* All projects
*/
websiteUrl: process.env.NEXT_PUBLIC_SITE_URL || "https://ssr.fascinated.cc",
apiUrl: process.env.NEXT_PUBLIC_SITE_API || "https://ssr.fascinated.cc/api",
/**
* Backend
*/
mongoUri: process.env.MONGO_URI,
discordBotToken: process.env.DISCORD_BOT_TOKEN,
} as const;