Allow setting the listen address

This commit is contained in:
Kierre
2025-11-08 20:21:59 -05:00
parent 7a67279c26
commit 5a1364a892
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -181,5 +181,5 @@ def root():
app.run(
port=config["frontend"]["port"],
host="::",
host=config["frontend"]["address"],
)