From 8c4dc60b68a39970c66a095f2355b464128bc8e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Numbus?= Date: Sun, 17 May 2026 13:42:16 +0200 Subject: [PATCH] Trying to get python bridge to work. --- web/logic/interactive.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/logic/interactive.py b/web/logic/interactive.py index 188074e..b1b6022 100644 --- a/web/logic/interactive.py +++ b/web/logic/interactive.py @@ -6,10 +6,10 @@ import sys ### Variables --> SECRET_PATH = "/run/user/{}/numbus".format(os.getuid()) if os.path.exists("/run/user/{}".format(os.getuid())) else "../secrets" os.makedirs(SECRET_PATH, exist_ok=True) -LOGS_DIR = "../logs/" -PAGES_DIR = "../pages/" -CONFIG_DIR = "../config/" -SIGNALS_DIR = "../signal/" +LOGS_DIR = "../web/logs/" +PAGES_DIR = "../web/pages/" +CONFIG_DIR = "../web/config/" +SIGNALS_DIR = "../web/signal/" ### <-- Variables class BridgeHandler(http.server.SimpleHTTPRequestHandler):