Skip to content

Commit b27fda8

Browse files
switch to google cloud version of api for production
1 parent 59d4340 commit b27fda8

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

Diff for: README.md

-10
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,6 @@ The VueJS application is built from source code via a modern chain of tools that
5858
The output of the build process is a set of static files including bundled Javascript, CSS, HTML and other media assets. These are then deployed to Netlify where they can be served to users on the internet.
5959

6060

61-
#### BioLink Service
62-
63-
There are two versions of the BioLink service:
64-
- **beta** at https://api-dev.monarchinitiative.org/api/
65-
- **production** at https://api.monarchinitiative.org/api/
66-
67-
`monarch-ui` will use **production** by default.
68-
To override this, put `?api=beta` as a url parameter.
69-
70-
7161
### Directory Structure
7262

7363
#### `monarch-ui/`

Diff for: src/api/bio-link.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ import {
2121

2222
// versions/environments of api servers
2323
const versions = {
24-
"google-cloud": "https://api.monarch-test.ddns.net/api/", // REMOVE WHEN NEW GOOGLE CLOUD SERVICES STABLE AND CANONICAL URLS BELOW HAVE BEEN TRANSFERRED TO THEM
24+
production: "https://api.monarch-test.ddns.net/api/",
2525
beta: "https://api-dev.monarchinitiative.org/api/",
26-
production: "https://api.monarchinitiative.org/api/",
2726
};
2827

2928
const defaultVersion = "production";

0 commit comments

Comments
 (0)