Add basic helper scripts for starting different binaries
This commit is contained in:
parent
de0d112630
commit
0c6cd3b562
2 changed files with 9 additions and 0 deletions
7
start-flogo.sh
Executable file
7
start-flogo.sh
Executable 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
2
start-nidus-sync.sh
Executable 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue