Skip to content

Commit

Permalink
impl
Browse files Browse the repository at this point in the history
Issue #604
  • Loading branch information
rsoika committed Sep 8, 2024
1 parent 97fb9d5 commit cf26a55
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions devi
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
#!/bin/bash

############################################################
# The Imixs Developer Script
# start, build, hot, setup, deploy
#
############################################################

# Funktion zum Entfernen des '-' Zeichens von einem Parameter
strip_dash() {
echo "$1" | sed 's/^-//'
}

echo " _ _ _ _ "
echo " __| | _____ _(_) | |__ ___| |_ __"
echo " / _\` |/ _ \\ \\ / / | | '_ \\ / _ \\ | \'_ \\"
echo "| (_| | __/\ V /| | | | | | __/ | |_) |"
echo " \__,_|\___| \_/ |_| |_| |_|\___|_| .__/ "
echo " |_| "
echo " Imixs Developer Script..."
echo "_________________________________________"

# Verify params
if [[ "$(strip_dash $1)" == "setup" ]]; then
echo " Dev Setup..."
sudo chmod -R 777 docker/deployments/
echo " starting dev enrvionment..."
mvn clean install -Pdebug
cp ./*-app/target/*.war ./docker/deployments/
docker-compose -f docker-compose-dev.yaml up
fi


if [[ "$(strip_dash $1)" == "start" ]]; then
echo " Start Dev Environment..."
docker-compose -f docker-compose-dev.yaml up
fi

if [[ "$(strip_dash $1)" == "build" ]]; then
echo " Build and Autodeploy..."
mvn clean install -DskipTests
fi

if [[ "$(strip_dash $1)" == "test" ]]; then
echo " Run JUnit Tests..."
mvn clean test
fi

if [[ "$(strip_dash $1)" == "hot" ]]; then
echo "* Hotdeploy..."
cd *-app
mvn manik-hotdeploy:hotdeploy
cd ..
fi



# Überprüfen, ob keine Parameter übergeben wurden - standard build
if [[ $# -eq 0 ]]; then

echo " Run with ./dev.sh -XXX"
echo " "
echo " -start : start Docker Containers"
echo " -build : build application and redeploy"
echo " -hot : Manik Hotdeploy"
echo " -test : run tests"
echo " -setup : setup dev environment - rebuild docker containers "
echo "_________________________________________"
echo " "

fi

0 comments on commit cf26a55

Please sign in to comment.