mirror of
https://github.com/dbeaver/cloudbeaver.git
synced 2026-09-24 16:04:36 +08:00
9 lines
441 B
Bash
Executable File
9 lines
441 B
Bash
Executable File
#!/bin/bash
|
|
launcherJar=( server/plugins/org.eclipse.equinox.launcher*.jar )
|
|
|
|
echo "Starting Cloudbeaver Server"
|
|
|
|
[ ! -d "workspace/.metadata" ] && mkdir -p workspace/GlobalConfiguration/.dbeaver && cp conf/initial-data-sources.conf workspace/GlobalConfiguration/.dbeaver/data-sources.json
|
|
|
|
java -jar ${launcherJar} -product io.cloudbeaver.product.ce.product -web-config conf/cloudbeaver.conf -nl en -registryMultiLanguage -vmargs -Xmx2048M
|