diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7ddfac9d5..71bba2007 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -27,16 +27,16 @@ stages: - task: DownloadSecureFile@1 displayName: 'download STAG frontend' inputs: - secureFile: 'FRONTEND_ENV_FILE_STAG' # string. Required. Secure File. + secureFile: 'FRONTEND_ENV_FILE_STAG_UPDATED' # string. Required. Secure File. - task: CopyFiles@2 displayName: 'copy STAG frontend' inputs: SourceFolder: '$(Agent.TempDirectory)' - Contents: FRONTEND_ENV_FILE_STAG + Contents: FRONTEND_ENV_FILE_STAG_UPDATED TargetFolder: './frontend' - - script: mv ./frontend/FRONTEND_ENV_FILE_STAG ./frontend/.env + - script: mv ./frontend/FRONTEND_ENV_FILE_STAG_UPDATED ./frontend/.env displayName: 'rename STAG .env' - script: ls -a ./frontend diff --git a/backend/misc/config.js b/backend/misc/config.js index b7ee7deba..123bf9314 100644 --- a/backend/misc/config.js +++ b/backend/misc/config.js @@ -115,7 +115,7 @@ const settings = { }, REDIS_PASSWORD: { required: false, - value: process.env.REDIS_PASSWORD || 'NOPE' + value: process.env.REDIS_PASSWORD || 'NOPE', }, } @@ -127,7 +127,7 @@ const buildConfig = () => { config[key] = obj.default } else { throw new Error( - `Invalid configuration: ${key} must be provided a value from .env, or a default value. See config.js` + `Invalid configuration: ${key} must be provided a value from .env, or a default value. See config.js`, ) } } else { @@ -142,7 +142,7 @@ const config = buildConfig() logger.info({ message: 'Running app with config', - data: config, + // data: config, }) global.gConfig = config diff --git a/frontend/public/index.html b/frontend/public/index.html index 254d9d3df..5de95e8d6 100755 --- a/frontend/public/index.html +++ b/frontend/public/index.html @@ -1,26 +1,50 @@ - -
- - - - - - - - - - - - + + + + + + + + - + - - - -