Bind to all interfaces when running Dash app

at least for now..sheesh
This commit is contained in:
Lance Edgar 2021-12-20 19:45:17 -06:00
parent a3a0b80123
commit 0fadd68fc2

View file

@ -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')