Skip to content

Commit

Permalink
change configuration for deployment, should make it dynamic see issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tgrall committed Nov 13, 2020
1 parent 13eb06c commit 0e93479
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sample-app/front-end/src/lib/SearchClient.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import axios from "axios";

const javaRestApiServer = (process.env.VUE_APP_SEARCH_API_JAVA || "http://34.71.52.16:8085");
const nodeRestApiServer = (process.env.VUE_APP_SEARCH_API_NODE || "http://34.71.52.16:8086");
const pythonRestApiServer = (process.env.VUE_APP_SEARCH_API_PYTHON || "http://34.71.52.16:8087");
const javaRestApiServer = (process.env.VUE_APP_SEARCH_API_JAVA || "http://34.121.127.120:8085");
const nodeRestApiServer = (process.env.VUE_APP_SEARCH_API_NODE || "http://34.121.127.120:8086");
const pythonRestApiServer = (process.env.VUE_APP_SEARCH_API_PYTHON || "http://34.121.127.120:8087");


export const SearchClient = {
Expand Down

0 comments on commit 0e93479

Please sign in to comment.