-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json.example
59 lines (59 loc) · 1.17 KB
/
config.json.example
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
55
56
57
58
59
{
"env_development": {
"debug": true,
"payments": {
"price": 0.00,
"currency": "BTC"
},
"server": {
"host": "127.0.0.1",
"port": 8443,
"ssl": {
"enabled": false,
"key": "/path/to/server.key",
"cert": "/path/to/server.crt"
},
"redirectPort": 8080
},
"database": {
"name": "cointractme-dev",
"user": "",
"pass": "",
"nodes": [
{
"host": "127.0.0.1",
"port": "27017"
}
]
},
"smtp": {
"user": "username",
"pass": "password",
"host": "smtp.gmail.com",
"port": 465
},
"bitpay": {
"client": {
"apiHost": "test.bitpay.com",
"apiPort": 443,
"forceSSL": true,
"keyPassword": ""
},
"secret": "/path/to/bitpay/api.key",
"pubkey": "/path/to/bitpay/api.pub"
},
"insight": {
"host": "test.insight.is",
"port": 80,
"path": "/",
"verbose": true
},
"storage": {
"provider": "rackspace",
"username": "username",
"apiKey": "apikey",
"region": "IAD",
"container": "containername"
}
}
}