Development
This commit is contained in:
parent
4b44fdf65a
commit
ce280b6d7a
6 changed files with 20 additions and 6 deletions
|
|
@ -21,10 +21,11 @@ HEALTH_FILE = f'{CONFIGS_DIR}/.health'
|
|||
DNS_METRICS_DB = f'{CONFIGS_DIR}/.dns-metrics'
|
||||
DNS_QUERIES_DB = f'{CONFIGS_DIR}/.dns-queries'
|
||||
BLOCKLISTS_DIR = f'{CONFIGS_DIR}/blocklists'
|
||||
PRODUCT_NAME = os.environ.get('PRODUCT_NAME', 'routlin')
|
||||
import settings as _settings
|
||||
PRODUCT_NAME = _settings.product_name()
|
||||
WEB_APP_DISPLAY_NAME = _settings.web_app_display_name()
|
||||
DASHB_TIMER_NAME = f'{PRODUCT_NAME}-dashboard-queue'
|
||||
DDNS_TIMER_NAME = f'{PRODUCT_NAME}-ddns-update'
|
||||
WEB_APP_DISPLAY_NAME = os.environ.get('WEB_APP_DISPLAY_NAME', f'{PRODUCT_NAME.capitalize()} Dashboard')
|
||||
DASHB_INTERVAL_SECS = 30
|
||||
QUEUE_MAX_LINES = 50
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue