dbeaver/pro#4066 run cli client from launcher, add cli server to CB (#3352)

* dbeaver/pro#4066 run cli client from launcher, add cli server to CB

* dbeaver/pro#4066 special scripts to execute cli commands

---------

Co-authored-by: Serge Rider <serge@jkiss.org>
Co-authored-by: kseniaguzeeva <112612526+kseniaguzeeva@users.noreply.github.com>
This commit is contained in:
Alexander Skoblikov
2025-05-06 20:47:36 +02:00
committed by GitHub
co-authored by Serge Rider kseniaguzeeva
parent bc656de886
commit 0c70890258
6 changed files with 106 additions and 1 deletions
+1
View File
@@ -36,5 +36,6 @@ exec java ${JAVA_OPTS} \
-jar ${launcherJar} \
-product io.cloudbeaver.product.ce.product \
-web-config conf/cloudbeaver.conf \
${CLI_OPTS} \
-nl en \
-registryMultiLanguage
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
set -Eeo pipefail
CLI_OPTS="$@"
if [[ $# -eq 0 ]] ;
then
CLI_OPTS='-help'
fi
source run-server.sh