-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathconfig-test.json
More file actions
36 lines (36 loc) · 900 Bytes
/
Copy pathconfig-test.json
File metadata and controls
36 lines (36 loc) · 900 Bytes
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
{
"server" : {
"port" : 3001
},
"esdr" : {
"apiRootUrl" : "http://localhost:3001/api/v1",
"oauthRootUrl" : "http://localhost:3001/oauth/token"
},
"esdrClient" : {
"resetPasswordUrl" : "http://localhost:3001/password-reset/:resetPasswordToken",
"verificationUrl" : "http://localhost:3001/verification/:verificationToken"
},
"resetPasswordToken" : {
"willReturnViaApi" : true,
"willEmailToUser" : false
},
"verificationToken" : {
"willReturnViaApi" : true,
"willEmailToUser" : false
},
"database" : {
"host" : "localhost",
"database" : "esdr_test",
"username" : "esdr_test",
"password" : "password",
"pool" : {
"connectionLimit" : 10
}
},
"datastore" : {
"dataDirectory" : "./datastore/data-test"
},
"requestLogging" : {
"isEnabled" : true
}
}