Files
zitadel/apps/login/next-env-vars.d.ts

38 lines
710 B
TypeScript
Raw Normal View History

declare namespace NodeJS {
interface ProcessEnv {
/**
2025-01-14 13:40:36 +01:00
* Multitenancy: The system api url
*/
AUDIENCE: string;
/**
2025-01-14 13:40:36 +01:00
* Multitenancy: The service user id
*/
SYSTEM_USER_ID: string;
/**
2025-01-14 13:40:36 +01:00
* Multitenancy: The service user private key
*/
SYSTEM_USER_PRIVATE_KEY: string;
/**
2025-01-14 13:40:36 +01:00
* Self hosting: The instance url
*/
ZITADEL_API_URL: string;
/**
2025-01-14 13:40:36 +01:00
* Self hosting: The service user id
*/
2025-01-23 10:41:17 +01:00
ZITADEL_SERVICE_USER_ID: string;
/**
2025-01-14 13:40:36 +01:00
* Self hosting: The service user token
*/
2025-01-23 10:41:17 +01:00
ZITADEL_SERVICE_USER_TOKEN: string;
2025-01-14 13:40:36 +01:00
/**
* Optional: wheter a user must have verified email
*/
EMAIL_VERIFICATION: string;
}
}