[ACA-4715] upgrade to latest ADF alphas and cleanup env vars (#3312)

* use latest ADF alphas

* use latest ADF alphas

* use ECM provider by default

* use BASIC auth by default

* defaults for oauth host

* remove unused vars
This commit is contained in:
Denys Vuika
2023-07-05 19:46:50 +01:00
committed by GitHub
parent 46ed7a8360
commit 6b003eff1f
11 changed files with 38 additions and 67 deletions

View File

@@ -50,10 +50,10 @@ export interface AcaBackend {
}
const config = {
authType: process.env.APP_CONFIG_AUTH_TYPE,
authType: 'BASIC',
hostBpm: process.env.APP_CONFIG_BPM_HOST,
hostEcm: process.env.APP_CONFIG_ECM_HOST,
provider: process.env.APP_CONFIG_PROVIDER,
provider: 'ECM',
contextRoot: 'alfresco'
};