We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cf8063 commit 0d6c052Copy full SHA for 0d6c052
bin/build.sh
build/build.sh
@@ -0,0 +1,15 @@
1
+#!/bin/bash
2
+cd ./build/
3
+ls | grep -v '\.sh' | xargs rm -rf
4
+mkdir conf/
5
+mkdir web/
6
+mkdir logs/
7
+cd ../redis-manager-dashboard
8
+mvn clean package -Dmaven.test.skip=true
9
+mv -f target/classes/data/ ../build/
10
+mv -f target/classes/application.yml ../build/conf/
11
+mv -f target/classes/log4j2.xml ../build/conf/
12
+rm -rf target/classes/com/
13
+mv -f target/classes/* ../build/web/
14
+mv -f target/lib/ ../build/
15
+cp target/*.jar ../build/
bin/start.sh build/start.shbin/start.sh renamed to build/start.sh
bin/stop.sh build/stop.shbin/stop.sh renamed to build/stop.sh
0 commit comments