41 lines
1.1 KiB
INI
41 lines
1.1 KiB
INI
; settings.ini
|
|
|
|
[Paths]
|
|
BLOCK_PATH = "./blocks"
|
|
TORRENT_PATH = "./torrents"
|
|
DB_PATH = "./state"
|
|
BALANCE_SHEET = "./balance_sheet"
|
|
LOG_PATH = "./logs"
|
|
WALLET_PATH = "./wallets"
|
|
WALLET_NAME = "contractless.wallet"
|
|
|
|
|
|
[Settings]
|
|
LOG_LEVEL = "info"
|
|
PUBLIC_IP = "your_public_ip_address"
|
|
LISTEN_IP = "0.0.0.0"
|
|
RPC_PORT = "50055"
|
|
TESTNET_RPC_PORT = "50050"
|
|
INCOMING_CONNECTIONS = "100"
|
|
OUTGOING_CONNECTIONS = "10"
|
|
VALIDATOR = "false"
|
|
; THREADS must 1, 2, or a multple of 4
|
|
THREADS = "8"
|
|
|
|
[Piggyback]
|
|
PIGGYBACK_1 = "contractless.dev:50050"
|
|
|
|
[Postgres-Testnet]
|
|
host = 127.0.0.1
|
|
port = 5432
|
|
user = contractless2
|
|
password = your_paddword
|
|
dbname = contractless_db2
|
|
|
|
[Postgres]
|
|
host = 127.0.0.1
|
|
port = 5432
|
|
user = contractless
|
|
password = your_password
|
|
dbname = contractless_db
|