monero.fail/xmrnodes/config.example.py

9 lines
304 B
Python
Raw Normal View History

2020-10-22 06:12:24 +01:00
import os
2020-10-22 06:17:17 +01:00
SECRET_KEY = os.environ.get('SECRET_KEY', 'xxxx')
DATA_DIR = os.environ.get('DATA_DIR', './data')
2020-10-24 06:55:34 +01:00
TOR_HOST = os.environ.get('TOR_HOST', '127.0.0.1')
TOR_PORT = os.environ.get('TOR_PORT', 9050)
2021-03-26 21:27:21 +00:00
NODE_HOST = os.environ.get('NODE_HOST', '127.0.0.1')
NODE_PORT = os.environ.get('NODE_PORT', 18080)