mynode/rootfs/standard/var/www/mynode/config.py

31 lines
1.2 KiB
Python
Raw Normal View History

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
LATEST_VERSION_URL = "https://www.mynodebtc.com/device/latest_version"
2020-02-24 01:39:40 +00:00
LATEST_BETA_VERSION_URL = "https://www.mynodebtc.com/device/latest_beta_version"
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"
BITCOIN_SYNCED_FILE = "/mnt/hdd/mynode/.mynode_bitcoind_synced"
# LND Variables
LND_WALLET_FILE = "/mnt/hdd/mynode/lnd/data/chain/bitcoin/mainnet/wallet.db"
LND_DATA_FOLDER = "/mnt/hdd/mynode/lnd/data/"
# 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"
NETDATA_ENABLED_FILE = "/mnt/hdd/mynode/.mynode_netdata_enabled"
2020-01-17 04:22:31 +00:00
MEMPOOLSPACE_ENABLED_FILE = "/mnt/hdd/mynode/.mynode_mempoolspace_enabled"
BTCPAYSERVER_ENABLED_FILE = "/mnt/hdd/mynode/.mynode_btcpayserver_enabled"