mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[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:
@@ -19,15 +19,15 @@ const width = 1366;
|
||||
const height = 768;
|
||||
|
||||
const SAVE_SCREENSHOT = process.env.SAVE_SCREENSHOT === 'true';
|
||||
const APP_CONFIG_ECM_HOST = process.env.APP_CONFIG_ECM_HOST || 'http://localhost:8080';
|
||||
const MAXINSTANCES = process.env.MAXINSTANCES || 1;
|
||||
const E2E_LOG_LEVEL = process.env.E2E_LOG_LEVEL || 'ERROR';
|
||||
const E2E_TS_CONFIG_FOR_ADF = 'tsconfig.e2e.adf.json';
|
||||
const LOCAL_ADF_OPTION = '--with-local-adf';
|
||||
|
||||
const { BASE_URL } = process.env;
|
||||
|
||||
const appConfig = {
|
||||
hostEcm: APP_CONFIG_ECM_HOST,
|
||||
hostEcm: BASE_URL || 'http://localhost:8080',
|
||||
providers: 'ECM',
|
||||
authType: 'BASIC'
|
||||
};
|
||||
|
Reference in New Issue
Block a user