-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
42 lines (38 loc) · 1.08 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**!
*
* Copyright 2016-2018 Uniquid Inc. or its affiliates. All Rights Reserved.
*
* License is in the "LICENSE" file accompanying this file.
* See the License for the specific language governing permissions and limitations under the License.
*
*/
var config = { aws:{}, node:{} };
config.aws = {
cauth: {
host: "HOST",
clientId: "",
authorizerName: "UniquIDCustomAuth",
debug: false,
protocol: 'wss-custom-auth',
customAuthHeaders: {
'x-amz-customAuthorizer-name': '',
'x-amz-customauthorizer-signature':''
}
},
key: "",
tokenKey: "UniquIDToken",
awsNode: "AWS-NODE",
awsTopic: 'home'
}
config.node = {
home: "./data",
mqttHost: "tcp://MQTT_BROKER:1883",
bcSeeds: ["testnet-seed.litecointools.com","seed-b.litecoin.loshan.co.uk","dnsseed-testnet.thrasher.io"],
registryUrl: "http://REGISTRY_URL:8080",
requestTimeout: 10000,
nodenamePrefix: "AWS-JS",
announceTopic: "TOPIC_ANNOUNCE",
bcLogLevel: 'error',
network: "ltc-testnet"
}
module.exports = config;