fix deps, tsconfig, next-env-vars, zitadel api

This commit is contained in:
Max Peintner
2025-01-14 13:13:57 +01:00
parent c003ea2b22
commit 1736a2b3a0
8 changed files with 308 additions and 177 deletions

33
apps/login/next-env-vars.d.ts vendored Normal file
View File

@@ -0,0 +1,33 @@
declare namespace NodeJS {
interface ProcessEnv {
/**
* The system api url
*/
AUDIENCE: string;
/**
* The system api service user ID
*/
SYSTEM_USER_ID: string;
/**
* The service user key
*/
SYSTEM_USER_PRIVATE_KEY: string;
/**
* The instance url
*/
ZITADEL_API_URL: string;
/**
* The service user id for the instance
*/
ZITADEL_USER_ID: string;
/**
* The service user token for the instance
*/
ZITADEL_USER_TOKEN: string;
}
}