mirror of
https://github.com/pablorevilla-meshtastic/meshview.git
synced 2026-07-04 00:41:44 +02:00
changes after testing
This commit is contained in:
+4
-4
@@ -5,11 +5,11 @@ tls_cert =
|
||||
acme_challenge =
|
||||
|
||||
[mqtt]
|
||||
server = 'mqtt.bayme.sh'
|
||||
topics = ['msh/US/bayarea/#']
|
||||
server = mqtt.bayme.sh
|
||||
topics = ['msh/US/bayarea/#', 'msh/US/CA/mrymesh/#']
|
||||
port = 1883
|
||||
username = 'meshdev'
|
||||
password = 'large4cats'
|
||||
username = meshdev
|
||||
password = large4cats
|
||||
|
||||
[database]
|
||||
connection_string = sqlite+aiosqlite:///packets.db
|
||||
@@ -26,7 +26,7 @@ async def main(config):
|
||||
|
||||
async with asyncio.TaskGroup() as tg:
|
||||
tg.create_task(
|
||||
load_database_from_mqtt(config["mqtt"]["server"], int(config["mqtt"]["port"]), config["mqtt"]["topics"].split(","), mqtt_user, mqtt_passwd)
|
||||
load_database_from_mqtt(config["mqtt"]["server"], int(config["mqtt"]["port"]), config["mqtt"]["topics"], mqtt_user, mqtt_passwd)
|
||||
)
|
||||
tg.create_task(
|
||||
web.run_server(
|
||||
|
||||
Reference in New Issue
Block a user