diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2019-10-03 19:27:56 +0530 |
---|---|---|
committer | Arundathi Patil <arundpil@in.ibm.com> | 2019-10-03 19:28:55 +0530 |
commit | d8205529640466ce7e3d3dfc7fd2085170b04efb (patch) | |
tree | a5308439f91599e9d41e27843a286a32c77c5084 /cds-ui/server/src/config/app-config.ts | |
parent | 3bdfeb467fa4d26fa174ea4f27b256bb0abaf9d8 (diff) |
Worked on defect CCSDK-1793
Changed base url from controller-blueprint to blueprint-processor
Issue-ID: CCSDK-1793
Change-Id: I38f8e8ba482a05d5b385c109fcd4c54f2cd77b48
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'cds-ui/server/src/config/app-config.ts')
-rw-r--r-- | cds-ui/server/src/config/app-config.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cds-ui/server/src/config/app-config.ts b/cds-ui/server/src/config/app-config.ts index 0c02381dd..dcca629f2 100644 --- a/cds-ui/server/src/config/app-config.ts +++ b/cds-ui/server/src/config/app-config.ts @@ -23,14 +23,14 @@ export const appConfig = Object.freeze({ export const controllerApiConfig = Object.freeze({ http: Object.freeze({ - url: process.env.API_BLUEPRINT_CONTROLLER_HTTP_BASE_URL || "http://localhost:8080/api/v1", - authToken: process.env.API_BLUEPRINT_CONTROLLER_HTTP_AUTH_TOKEN || "Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==" + url: process.env.API_BLUEPRINT_PROCESSOR_HTTP_BASE_URL || "http://localhost:8081/api/v1", + authToken: process.env.API_BLUEPRINT_PROCESSOR_HTTP_AUTH_TOKEN || "Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==" }) }); export const processorApiConfig = Object.freeze({ http: Object.freeze({ - url: process.env.API_BLUEPRINT_PROCESSOR_HTTP_BASE_URL || "http://localhost:8080/api/v1", + url: process.env.API_BLUEPRINT_PROCESSOR_HTTP_BASE_URL || "http://localhost:8081/api/v1", authToken: process.env.API_BLUEPRINT_PROCESSOR_HTTP_AUTH_TOKEN || "Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==" }), grpc: Object.freeze({ |