mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
We added a new Auth UI, with all the business logic to handle profiles and such... it works alright
11 lines
476 B
TypeScript
11 lines
476 B
TypeScript
export const secret = {
|
|
InstantAdminToken: new sst.Secret("InstantAdminToken"),
|
|
InstantAppId: new sst.Secret("InstantAppId"),
|
|
LoopsApiKey: new sst.Secret("LoopsApiKey"),
|
|
GithubClientSecret: new sst.Secret("GithubClientSecret"),
|
|
GithubClientID: new sst.Secret("GithubClientID"),
|
|
DiscordClientSecret: new sst.Secret("DiscordClientSecret"),
|
|
DiscordClientID: new sst.Secret("DiscordClientID"),
|
|
};
|
|
|
|
export const allSecrets = Object.values(secret); |