Add basic helper scripts for starting different binaries

This commit is contained in:
Eli Ribble 2026-02-25 16:14:18 +00:00
parent de0d112630
commit 0c6cd3b562
No known key found for this signature in database
2 changed files with 9 additions and 0 deletions

7
start-flogo.sh Executable file
View file

@ -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 .

2
start-nidus-sync.sh Executable file
View file

@ -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