-
Notifications
You must be signed in to change notification settings - Fork 11
/
devconf.toml
executable file
·56 lines (45 loc) · 1.25 KB
/
devconf.toml
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
# This config is meant for local development only
[WebAPI]
adminbind = "localhost" # avoids macOS firewall confirmation!
adminport = "8081"
pubbind = "localhost" # avoids macOS firewall confirmation!
pubport = "8082"
pubapirooturl = "http://localhost:8082"
[Store]
# SQLite: (default)
# DBFile = "gigawallet.db"
# Postgres:
# DBFile = "postgres://username:password@localhost/gigawallet?sslmode=disable"
[gigawallet]
network = "mainnet" # which dogecoind to connect to
[dogecoind.testnet]
host = "localhost"
zmqport = 28332
rpcport = 44555
rpcpass = "gigawallet"
rpcuser = "gigawallet"
[dogecoind.mainnet]
host = "127.0.0.1"
zmqport = 28332
rpchost = "127.0.0.1"
rpcport = 22555
rpcpass = "suchpay"
rpcuser = "suchpay"
## Setup loggers, see pkg/config.go LoggersConfig
[loggers.events]
path = "./events.log"
types = ["ALL"]
## Setup http Callbacks, see pkg/config.go CallbackConfig
#[callbacks.example1]
# path = "https://example.com/invoiceEvents"
# types = ["INV"]
## Setup MQTT event publishing, see pkg/config.go MQTTConfig
#[mqtt]
# address = "test.mosquitto.org:1884"
# username = "rw"
# password = "readwrite"
# clientid = "gigawallet"
#
#[mqtt.queues.accounts]
# topicfilter = "account"
# Types = ["ACC"]