From a2c98d9ccf2402ae676247562c0540e18a235ca2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Numbus?= Date: Sun, 29 Mar 2026 12:50:31 +0200 Subject: [PATCH] Changed port --- configurator/bridge.py | 2 +- deploy.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configurator/bridge.py b/configurator/bridge.py index 91d72db..a3685f4 100644 --- a/configurator/bridge.py +++ b/configurator/bridge.py @@ -36,4 +36,4 @@ class BridgeHandler(http.server.SimpleHTTPRequestHandler): with open(".deploy_signal", "w") as f: f.write("1") os.chdir("configurator") -http.server.HTTPServer(('localhost', 49151), BridgeHandler).serve_forever() \ No newline at end of file +http.server.HTTPServer(('localhost', 8088), BridgeHandler).serve_forever() \ No newline at end of file diff --git a/deploy.sh b/deploy.sh index dae1310..af5c3f4 100644 --- a/deploy.sh +++ b/deploy.sh @@ -2,7 +2,7 @@ #!nix-shell -i bash -p bash nano coreutils gnused gum fastfetch xkcdpass sops ssh-to-age age sshpass envsubst pciutils usbutils mosquitto curl jq yq python3 launch_configurator() { - local PORT=49151 + local PORT=8088 local CONFIG_FILE="numbus.yaml" local BRIDGE_SCRIPT="configurator/bridge.py"