mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 08:45:38 +02:00
18 lines
817 B
TypeScript
18 lines
817 B
TypeScript
export const secret = {
|
|
PolarSecret: new sst.Secret("PolarSecret", process.env.POLAR_API_KEY),
|
|
SteamApiKey: new sst.Secret("SteamApiKey"),
|
|
GithubClientID: new sst.Secret("GithubClientID"),
|
|
DiscordClientID: new sst.Secret("DiscordClientID"),
|
|
PolarWebhookSecret: new sst.Secret("PolarWebhookSecret"),
|
|
GithubClientSecret: new sst.Secret("GithubClientSecret"),
|
|
DiscordClientSecret: new sst.Secret("DiscordClientSecret"),
|
|
|
|
// Pricing
|
|
NestriFreeMonthly: new sst.Secret("NestriFreeMonthly"),
|
|
NestriProMonthly: new sst.Secret("NestriProMonthly"),
|
|
NestriProYearly: new sst.Secret("NestriProYearly"),
|
|
NestriFamilyMonthly: new sst.Secret("NestriFamilyMonthly"),
|
|
NestriFamilyYearly: new sst.Secret("NestriFamilyYearly"),
|
|
};
|
|
|
|
export const allSecrets = Object.values(secret); |