We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 485ee66 commit ed0f66eCopy full SHA for ed0f66e
2 files changed
.gitignore
@@ -18,3 +18,5 @@ bin/
18
*.tlog
19
20
workspace
21
+data-index-service-*-runner.jar
22
+*/persistence/*
scripts/startDataIndex.sh
@@ -0,0 +1,12 @@
1
+
2
+echo "Script requires your maven project to be compiled"
3
4
+DATA_INDEX_VERSION=0.4.0
5
+PERSISTENCE_FOLDER=target/classes/persistence
6
7
+[ ! -d ${PERSISTENCE_FOLDER} ] && echo "Persistence folder is missing. Make sure that your project was compiled" && exit 0
8
9
+wget -nc http://repo2.maven.org/maven2/org/kie/kogito/data-index-service/${DATA_INDEX_VERSION}/data-index-service-${DATA_INDEX_VERSION}-runner.jar
10
+cp -rf ${PERSISTENCE_FOLDER} persistence
11
+java -jar -Dkogito.protobuf.folder=`pwd`/persistence data-index-service-${DATA_INDEX_VERSION}-runner.jar
12
0 commit comments