-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.js
25 lines (23 loc) · 1.11 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// IMPORTANT: This file is only used during local development. Any value in here needs to be
// adapted to the Docker build process to work once the code is deployed. If you make changes
// here, you will need to make corresponding changes in the Docker build as well.
const _server_base = "https://central.isample.xyz/isamples_central/";
const DATACITE_PUBLISHER = ['Sesar', 'Geome', "OpenContext", "Smithsonian"];
const config = {
"original_source": "https://n2t.net",
"solr_url": _server_base + "thing/select",
"solr_stream": _server_base + "thing/stream",
"thingpage": _server_base + "thingpage",
"dois_draft": _server_base + "manage/mint_draft_identifiers",
"login": _server_base + "manage/login",
"logout": _server_base + "manage/logout",
"userinfo": _server_base + "manage/userinfo",
"analytics_src": "https://metrics.isample.xyz/js/plausible.js",
"analytics_domain": "isamples.org",
"datacite_prefix": "10.82273",
"datacite_publisher": DATACITE_PUBLISHER,
"h3_count": _server_base + "/h3_counts",
"enable_login": true,
"vocabulary_url": _server_base + "vocabulary"
};
window.config = config;