31 lines
602 B
Python
31 lines
602 B
Python
|
|
'''
|
|
Settings for user management portal.
|
|
'''
|
|
|
|
# Title of the Dashboard
|
|
title = 'PNW MMDVM User Portal'
|
|
# Logo used on dashboard page
|
|
logo = 'http://pnwdigital.net/images/Logos/PP-PNW-Logo-12b-Clean-250c.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'
|
|
|