2021-05-07 10:56:21 -04:00
|
|
|
|
|
|
|
'''
|
|
|
|
Settings for user management portal.
|
|
|
|
'''
|
2021-05-12 15:01:29 -04:00
|
|
|
# Database location
|
|
|
|
db_location = 'sqlite:///./users.db'
|
|
|
|
|
|
|
|
# Legacy passphrase used in hblink.cfg
|
|
|
|
legacy_passphrase = 'passw0rd'
|
|
|
|
|
2021-05-12 16:17:20 -04:00
|
|
|
# Trim passphrases to 8 characters
|
|
|
|
use_short_passphrase = False
|
2021-05-07 10:56:21 -04:00
|
|
|
|
|
|
|
# Title of the Dashboard
|
2021-05-10 12:32:15 -04:00
|
|
|
title = 'MMDVM User Portal'
|
2021-05-07 10:56:21 -04:00
|
|
|
# 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'
|
|
|
|
|