add back api host variable

This commit is contained in:
OxSaitama 2023-09-26 16:16:18 +02:00
parent 275c5a0f63
commit 50581146e9

View File

@ -100,6 +100,9 @@ export class BackendVariables {
@IsNotEmpty()
public readonly DOCAPOST_CONNECT_PROCESS_ID!: string;
@IsNotEmpty()
public readonly BACK_API_HOST!: string;
@IsNotEmpty()
public readonly DOCAPOST_APP_ID!: string;
@ -140,6 +143,7 @@ export class BackendVariables {
this.DOCAPOST_VERSION = process.env["DOCAPOST_VERSION"]!;
this.DOCAPOST_DOCUMENT_PROCESS_ID = process.env["DOCAPOST_DOCUMENT_PROCESS_ID"]!;
this.DOCAPOST_CONNECT_PROCESS_ID = process.env["DOCAPOST_CONNECT_PROCESS_ID"]!;
this.BACK_API_HOST = process.env["BACK_API_HOST"]!;
this.DOCAPOST_APP_ID = process.env["DOCAPOST_APP_ID"]!;
this.DOCAPOST_APP_PASSWORD = process.env["DOCAPOST_APP_PASSWORD"]!;