diff --git a/server.py b/server.py index 88f2950..3cf0fc8 100755 --- a/server.py +++ b/server.py @@ -66,4 +66,6 @@ if __name__ == "__main__": if args.charge_control: web.app.chc = ChargeControls.load_config(web.app.myp, name=args.charge_control) web.app.chc.start() - save_config(web.app.myp) \ No newline at end of file + save_config(web.app.myp) + t1 = Thread(target=start_app, args=["My car info", args.base_path, args.debug < 20, args.listen, int(args.port)]) + t1.start()