From 8a9e57be76e848591de6abd9c92b37e203d726f1 Mon Sep 17 00:00:00 2001 From: Joakim Persson Date: Wed, 17 Jul 2024 14:27:18 +0200 Subject: [PATCH] =?UTF-8?q?Startar=20separat=20webserv=20f=C3=B6r=20fronte?= =?UTF-8?q?nd?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- smartassist/src/startservices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smartassist/src/startservices.py b/smartassist/src/startservices.py index 1b4e5c1..4292f46 100644 --- a/smartassist/src/startservices.py +++ b/smartassist/src/startservices.py @@ -37,6 +37,6 @@ def start_backend(): print(f"Failed to start backend: {e}") if __name__ == '__main__': - start_frontend() + start_frontend() # No need for this as the backend starts a web server on its own. start_backend()