From f1e0fd13e15024974643523c2a880b5aca31ecc8 Mon Sep 17 00:00:00 2001 From: Patrick Sonnerat Date: Sun, 17 Sep 2023 21:45:30 +0200 Subject: [PATCH] Update flyboot.sh flyctl launch resets internal_port to 3000 so we need to avoid using it We'll use flyctl apps create -a appname to check for availability before running directly flyctl deploy --- docs/_static/flyboot.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/_static/flyboot.sh b/docs/_static/flyboot.sh index 6604ce55..e0521a51 100644 --- a/docs/_static/flyboot.sh +++ b/docs/_static/flyboot.sh @@ -5,10 +5,11 @@ # ###################################################################################################### git clone https://github.com/nightscout/cgm-remote-monitor;cd cgm-remote-monitor;cat > fly.toml << "EOF" -app = "nightscout" kill_signal = "SIGINT" kill_timeout = 5 processes = [] +[env] +PORT = "1337" [experimental] allowed_public_ports = [] auto_rollback = true