Merge pull request #2 from unipheas/main

This commit is contained in:
Smittix
2026-01-01 19:16:24 +00:00
committed by GitHub
+8 -1
View File
@@ -349,4 +349,11 @@ def main() -> None:
print("Press Ctrl+C to stop")
print()
app.run(host=args.host, port=args.port, debug=args.debug, threaded=True)
# Avoid loading a global ~/.env when running the script directly.
app.run(
host=args.host,
port=args.port,
debug=args.debug,
threaded=True,
load_dotenv=False,
)