-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.json
54 lines (54 loc) · 1.25 KB
/
config.json
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
43
44
45
46
47
48
49
50
51
52
53
54
{
"loglevel": "debug",
"port": "8080",
"db": {
"url": "postgresql://postgres:postgres@localhost:5432/test_platform",
"maxPoolConns": 10,
"minPoolConns": 1
},
"amc": {
"url": "localhost:8889",
"reconnectionAttempts": 5,
"reconnectionDelay": 5,
"token": "top secret am token"
},
"sessionsCleaner": {
"interval": 60,
"maxLastUpdate": 600
},
"blockchain": {
"nodeUrl": "https://api.daobet.org",
"sponsorUrl": "http://localhost:3333",
"contracts": {
"platform": "ttplatform"
},
"permissions": {
"deposit": "5JJvavvETHcGEx7ueoDry8zvcfPenbBCKcUQXXXXXX",
"gameaction": "5J2FdJeALHgYRkNZh9htUo3PgwXyY9XLyXXXXXX",
"signidice": "5J2FdJeALHHGJKGDaw76o3PgwXyY9XLyXXXXXX"
},
"disableSponsor": true,
"listingCacheTTL": 1
},
"signidice": {
"accountName": "sg.platform",
"key": "base64 encoded pem key"
},
"auth": {
"jwtSecret": "top_secret",
"accessTokenTTL": 1800,
"refreshTokenTTL": 86400,
"maxUserSessions": 10,
"cleanerInterval": 30,
"walletUrl": "url",
"walletClientID": 0,
"walletClientSecret": "secret"
},
"affiliateStats": {
"url": "localhost:8899"
},
"activeFeatures": {
"bonus": true,
"referrals": false
}
}