mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 13:35:07 +00:00
get instance by host
This commit is contained in:
18
apps/login/next-env-vars.d.ts
vendored
18
apps/login/next-env-vars.d.ts
vendored
@@ -1,33 +1,37 @@
|
||||
declare namespace NodeJS {
|
||||
interface ProcessEnv {
|
||||
/**
|
||||
* The system api url
|
||||
* Multitenancy: The system api url
|
||||
*/
|
||||
AUDIENCE: string;
|
||||
|
||||
/**
|
||||
* The system api service user ID
|
||||
* Multitenancy: The service user id
|
||||
*/
|
||||
SYSTEM_USER_ID: string;
|
||||
|
||||
/**
|
||||
* The service user key
|
||||
* Multitenancy: The service user private key
|
||||
*/
|
||||
SYSTEM_USER_PRIVATE_KEY: string;
|
||||
|
||||
/**
|
||||
* The instance url
|
||||
* Self hosting: The instance url
|
||||
*/
|
||||
ZITADEL_API_URL: string;
|
||||
|
||||
/**
|
||||
* The service user id for the instance
|
||||
* Self hosting: The service user id
|
||||
*/
|
||||
ZITADEL_USER_ID: string;
|
||||
|
||||
/**
|
||||
* The service user token for the instance
|
||||
* Self hosting: The service user token
|
||||
*/
|
||||
ZITADEL_USER_TOKEN: string;
|
||||
|
||||
/**
|
||||
* Optional: wheter a user must have verified email
|
||||
*/
|
||||
EMAIL_VERIFICATION: string;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user