forked from wc-library/selfcheck
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample_config.js
23 lines (23 loc) · 942 Bytes
/
example_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
// Rename this file to `config.js` and populate the values for your institution
module.exports = {
"hostname": "https://api-na.hosted.exlibrisgroup.com",
"apiKey": "XXXXXXXXXXXXXXXXXXXX",
"logLocation": "/var/log/selfcheck/",
"locations": [{
"libraryLogoUrl": "url/to/image.jpg",
"featureImageUrl": "url/to/image.jpg",
"libraryNameString": "Friendly Library Name",
"organizationNameString": "Friendly Organization Name",
"apiLibraryName": "XXXXX",
"apiCircDesk": "XXXXXXXXXXXXXXXX",
"permitIpAddresses": ["127.0.0.1"],
}, {
"libraryLogoUrl": "url/to/image.jpg",
"featureImageUrl": "url/to/image.jpg",
"libraryNameString": "Friendly Library Name",
"organizationNameString": "Friendly Organization Name",
"apiLibraryName": "XXXXX",
"apiCircDesk": "XXXXXXXXXXXXXXXX",
"permitIpAddresses": ["127.0.0.2"],
}]
}