31 lines
592 B
Python
31 lines
592 B
Python
|
|
'''
|
|
Settings for user management portal.
|
|
'''
|
|
|
|
# Title of the Dashboard
|
|
title = 'MMDVM User Portal'
|
|
# Logo used on dashboard page
|
|
logo = 'https://github.com/HBLink-org/hblink3/raw/master/HBlink.png'
|
|
# Port to run server
|
|
ums_port = 8080
|
|
# IP to run server on
|
|
ums_host = '127.0.0.1'
|
|
|
|
url = 'http://localhost:8080'
|
|
|
|
append_int = 1
|
|
|
|
shared_secrets = ['test']
|
|
|
|
|
|
# Gateway contact info displayed on about page.
|
|
contact_name = 'your name'
|
|
contact_call = 'N0CALL'
|
|
contact_email = 'email@example.org'
|
|
contact_website = 'https://hbl.ink'
|
|
|
|
# Time format for display
|
|
time_format = '%H:%M:%S - %m/%d/%y'
|
|
|