chore: seminarhof customer project

This commit is contained in:
e2e
2026-06-21 23:19:18 +02:00
commit dca4c76a13
161 changed files with 18517 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { auth0 } from './auth/providers/auth0'
import type { AuthProvider } from './auth/providers/_types'
/**
* Active auth providers for this app.
*
* Providers are copied from `src/auth/providers/*.ts.inactive` into the
* active set — the Fabric console's auth browser runs this as a plan.
* Each provider's backend handler reads its secrets via
* `secrets.getSecret()` (never from `process.env` on the client).
*/
export const activeProviders: AuthProvider[] = [auth0]
export const primaryProvider = activeProviders[0]