[ACA-4715] break dependency on envsubst (#3325)

* remove BPM host

* break dependency on envsubst

* remove prebuild script

* cleanup package.json
This commit is contained in:
Denys Vuika
2023-07-11 08:39:17 +01:00
committed by GitHub
parent f54ba92f77
commit 7ab4cc5e53
16 changed files with 21 additions and 231 deletions

View File

@@ -49,10 +49,12 @@ export interface AcaBackend {
tearDown(): Promise<any>;
}
const { BASE_URL } = process.env;
const config = {
authType: 'BASIC',
hostBpm: process.env.APP_CONFIG_BPM_HOST,
hostEcm: process.env.APP_CONFIG_ECM_HOST,
hostBpm: BASE_URL,
hostEcm: BASE_URL,
provider: 'ECM',
contextRoot: 'alfresco'
};