From 0fadd68fc2979626ac1ceec0b5ac7b714d9f7930 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Mon, 20 Dec 2021 19:45:17 -0600 Subject: [PATCH] Bind to all interfaces when running Dash app at least for now..sheesh --- rattail_dash/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rattail_dash/commands.py b/rattail_dash/commands.py index fba1dfe..162ce28 100644 --- a/rattail_dash/commands.py +++ b/rattail_dash/commands.py @@ -45,4 +45,4 @@ class RunDashApp(commands.Subcommand): def run(self, args): factory = self.app.load_object(args.spec) dashapp = factory(self.config) - dashapp.run_server(debug=True) + dashapp.run_server(debug=True, host='0.0.0.0')