From 0c6cd3b562e93648469e9eebe8fccdfd78df7c97 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Wed, 25 Feb 2026 16:14:18 +0000 Subject: [PATCH] Add basic helper scripts for starting different binaries --- start-flogo.sh | 7 +++++++ start-nidus-sync.sh | 2 ++ 2 files changed, 9 insertions(+) create mode 100755 start-flogo.sh create mode 100755 start-nidus-sync.sh diff --git a/start-flogo.sh b/start-flogo.sh new file mode 100755 index 00000000..2962d928 --- /dev/null +++ b/start-flogo.sh @@ -0,0 +1,7 @@ +#!/run/current-system/sw/bin/bash +# normal +#export $(cat /var/run/secrets/nidus-dev-sync-env | xargs) && BIND=127.0.0.1:9001 FLOGO_BIND=:9000 FLOGO_UPSTREAM=http://127.0.0.1:9001 ../flogo/flogo -target . +# verbose +export $(cat /var/run/secrets/nidus-dev-sync-env | xargs) && BIND=127.0.0.1:9001 FLOGO_BIND=:9000 FLOGO_UPSTREAM=http://127.0.0.1:9001 FLOGO_VERBOSE=1 ../flogo/flogo -target . +# no TUI +#export $(cat /var/run/secrets/nidus-dev-sync-env | xargs) && BIND=127.0.0.1:9001 FLOGO_BIND=:9000 FLOGO_DISABLE_TUI=1 FLOGO_UPSTREAM=http://127.0.0.1:9001 ../flogo/flogo -target . diff --git a/start-nidus-sync.sh b/start-nidus-sync.sh new file mode 100755 index 00000000..4096536c --- /dev/null +++ b/start-nidus-sync.sh @@ -0,0 +1,2 @@ +#!/run/current-system/sw/bin/bash +export $(cat /var/run/secrets/nidus-dev-sync-env | xargs) && ./nidus-sync 2>&1 | tee nidus-sync.log