2019-06-15 23:02:44 +00:00
|
|
|
CONFIG = {}
|
|
|
|
|
|
|
|
# Enabled Features
|
|
|
|
CONFIG["rtl_enabled"] = True
|
|
|
|
CONFIG["electrs_enabled"] = True
|
|
|
|
CONFIG["explorer_enabled"] = True
|
|
|
|
CONFIG["btcrpcexplorer_enabled"] = True
|
|
|
|
CONFIG["lndhub_enabled"] = True
|
|
|
|
|
|
|
|
# myNode variables
|
2019-10-12 21:03:18 +00:00
|
|
|
CHECKIN_URL = "https://www.mynodebtc.com/device_api/check_in.php"
|
2019-06-15 23:02:44 +00:00
|
|
|
|
|
|
|
# Bitcoin Variables
|
|
|
|
BITCOIN_ENV_FILE = "/mnt/hdd/mynode/bitcoin/env"
|
2021-04-11 00:51:26 +00:00
|
|
|
BITCOIN_SYNCED_FILE = "/mnt/hdd/mynode/.mynode_bitcoin_synced"
|
2019-06-15 23:02:44 +00:00
|
|
|
|
|
|
|
# LND Variables
|
|
|
|
LND_DATA_FOLDER = "/mnt/hdd/mynode/lnd/data/"
|
|
|
|
|
2020-05-13 01:54:17 +00:00
|
|
|
# Variables marking if app should be installed
|
|
|
|
DOJO_INSTALL_FILE = "/mnt/hdd/mynode/settings/mynode_dojo_install"
|
|
|
|
|
2019-06-15 23:02:44 +00:00
|
|
|
# Other Variables
|
|
|
|
ELECTRS_ENABLED_FILE = "/mnt/hdd/mynode/.mynode_electrs_enabled"
|
|
|
|
LNDHUB_ENABLED_FILE = "/mnt/hdd/mynode/.mynode_lndhub_enabled"
|
|
|
|
BTCRPCEXPLORER_ENABLED_FILE = "/mnt/hdd/mynode/.mynode_btcrpceplorer_enabled"
|
2019-08-13 03:29:53 +00:00
|
|
|
VPN_ENABLED_FILE = "/mnt/hdd/mynode/.mynode_vpn_enabled"
|
2019-11-16 05:09:15 +00:00
|
|
|
NETDATA_ENABLED_FILE = "/mnt/hdd/mynode/.mynode_netdata_enabled"
|
2021-04-11 00:51:26 +00:00
|
|
|
MEMPOOL_ENABLED_FILE = "/mnt/hdd/mynode/.mynode_mempoolspace_enabled"
|
2020-01-17 04:22:31 +00:00
|
|
|
BTCPAYSERVER_ENABLED_FILE = "/mnt/hdd/mynode/.mynode_btcpayserver_enabled"
|