-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathml
More file actions
executable file
·111 lines (102 loc) · 3.12 KB
/
Copy pathml
File metadata and controls
executable file
·111 lines (102 loc) · 3.12 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#!/bin/bash
###############################################################################
# Copyright 2012 MarkLogic Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
###############################################################################
hash ruby 2>&- || { echo >&2 "Ruby is required to run the ml scripts."; exit 1; }
usage()
{
printf "Usage: ml new app-name [--git]\n\n use --git to automatically configure a git repo\n"
}
PARAMS=("${@}")
if [ "$1" == 'new' ]
then
shift
if [ $1 ]
then
app_name="$1"
shift
hash git 2>&- || { echo >&2 "Git is required to use the new command."; exit 1; }
if [ -e $app_name ]
then
printf "\n${app_name} already exists. Aborting\n"
exit 1
fi
BRANCH="master"
INIT_GIT=0
APPTYPE="mvc"
for (( i = 0; i < ${#PARAMS[@]}; i++ )); do
if [[ ${PARAMS[${i}]} == --branch=* ]]
then
splits=(${PARAMS[${i}]//=/ })
BRANCH=${splits[1]}
elif [[ ${PARAMS[${i}]} == --git* ]]
then
INIT_GIT=1
elif [[ ${PARAMS[${i}]} == --app-type* ]]
then
splits=(${PARAMS[${i}]//=/ })
APPTYPE=${splits[1]}
fi
done
if [ "$APPTYPE" != "mvc" ] && [ "$APPTYPE" != "rest" ] && [ "$APPTYPE" != "hybrid" ]
then
printf "\nValid values for app-type are mvc, rest and hybrid. Aborting\n"
exit 1
fi
printf "\nCreating new Application: ${app_name}..."
git clone git://github.com/marklogic/roxy.git -b ${BRANCH} ${app_name}
pushd ${app_name} > /dev/null
rm -rf .git*
if [ "$APPTYPE" = "rest" ]
then
# For a REST application, we won't be using the MVC code. Remove it.
# mvc and hybrid apps will use it.
rm -rf src/*
printf "\nNo initial source code is provided for REST apps. You can copy code from Application Builder under the source directory.\n"
fi
./ml init ${app_name} --app-type=${APPTYPE}
popd > /dev/null
printf " done\n"
if [ -e $app_name ]
then
if [ ${INIT_GIT} == 1 ]
then
printf "Creating a git repository:\n"
cd ${app_name}
git init
git add .
git commit -q -m "Initial Commit"
printf "...done\n"
fi
fi
else
usage
fi
elif [ "$1" == 'self-test' ]
then
if [ -e deploy/test/test_main.rb ]
then
ruby -I deploy -I deploy/lib -I deploy/test deploy/test/test_main.rb
else
printf "\nERROR: You must run this command inside a valid Roxy Project\n\n"
fi
else
if [ -e deploy/lib/ml.rb ]
then
ruby -I deploy -I deploy/lib deploy/lib/ml.rb $*
else
printf "\nERROR: You must run this command inside a valid Roxy Project\n\n"
fi
fi