-
Notifications
You must be signed in to change notification settings - Fork 60
/
run-dev.sh
executable file
·74 lines (59 loc) · 1.91 KB
/
run-dev.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env bash
# ###############################################################################
# ###############################################################################
# ###############################################################################
# ssh-keygen (create a 'vagrant' entry)
# ssh-copy-id [email protected] (password: vagrant)
# ###############################################################################
# ###############################################################################
# ###############################################################################
function compile_and_install_parent {
mvn clean install -DskipTests
}
function run_webui {
cd $CLOUDUNIT_HOME/cu-manager-ui
grunt serve
}
function run_tomcat {
cd $CLOUDUNIT_HOME/cu-manager
mvn clean compile tomcat7:run -DskipTests -Dspring.profiles.active=vagrant
}
function reset_vagrant {
cd $CLOUDUNIT_HOME/cu-vagrant
ssh '[email protected]' "cd cloudunit/cu-platform && ./reset.sh -y"
}
function usage {
echo "Usage: $0 (tomcat|reset)"
echo " tomcat : run tomcat without ide"
echo " reset : delete all containers, volumes and database into vagrantbox"
exit 1
}
function check_env {
if [ "$USER" == "vagrant" ];
then
echo "Needed to be executed outside the vagrant box. Please exit"
exit 1
fi
}
# ###############################################################################
# ###############################################################################
# ###############################################################################
export CLOUDUNIT_HOME=`pwd`
check_env
compile_and_install_parent
while test $# -gt 0
do
case "$1" in
tomcat)
run_tomcat
;;
reset)
reset_vagrant
;;
*) echo "bad option $1"
usage
;;
esac
shift
done
run_webui 2>&1 &