We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
development.sh
1 parent 703034f commit 13ff48cCopy full SHA for 13ff48c
development.sh
@@ -85,27 +85,27 @@ download_docker_compose_bundle() {
85
echo "$commit_sha" > ./docker/RELEASE_VERSION.txt
86
}
87
88
-function start {
+start() {
89
$DOCKER_COMPOSE_CMD up --build -d jore4-auth jore4-testdb
90
91
92
-function stop_all {
+stop_all() {
93
$DOCKER_COMPOSE_CMD stop
94
95
96
-function remove_all {
+remove_all() {
97
$DOCKER_COMPOSE_CMD down
98
99
100
-function build {
+build() {
101
mvn install
102
103
104
-function run_tests {
+run_tests() {
105
mvn test
106
107
108
-function print_usage {
+print_usage() {
109
echo "
110
Usage: $(basename "$0") <command>
111
0 commit comments