feat: Only bind 127.0.0.1 for testing server
All checks were successful
Build Docker / BuildImage (push) Successful in 2m43s
Check Code Quality / RuffCheck (push) Successful in 2m43s

This commit is contained in:
2026-02-11 12:33:46 +11:00
parent 11efb6f09c
commit 10f31b1171

View File

@@ -140,4 +140,4 @@ def not_found(e):
# endregion
if __name__ == "__main__":
app.run(debug=True, port=5000, host="0.0.0.0")
app.run(debug=True, port=5000, host="127.0.0.1")