You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
299 B
Python
9 lines
299 B
Python
import os
|
|
|
|
SECRET_KEY = os.environ.get('SECRET_KEY', 'xxxx')
|
|
DATA_DIR = os.environ.get('DATA_DIR', './data')
|
|
TOR_HOST = os.environ.get('TOR_HOST', '127.0.0.1')
|
|
TOR_PORT = os.environ.get('TOR_PORT', 9050)
|
|
I2P_HOST = os.environ.get('I2P_HOST', '127.0.0.1')
|
|
I2P_PORT = os.environ.get('I2P_PORT', 4444)
|