-
Notifications
You must be signed in to change notification settings - Fork 34
/
deploy-frontend.sh
executable file
·80 lines (64 loc) · 1.68 KB
/
deploy-frontend.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
74
75
76
77
78
79
80
#!/usr/bin/env sh
# Use this script to package up your code
set -eu
pushd () {
command pushd "$@" > /dev/null
}
popd () {
command popd "$@" > /dev/null
}
if [ -z ${1+x} ] && [ -z ${2+x} ] && [ -z ${3+x} ] && [ -z ${4+x} ]; then
echo "Usage: USERNAME PASSWORD ORG SPACE"
exit 1
fi
export CF='command -v cf'
if [[ $? != 0 ]]; then
echo "I don't think the CF command line client (cf-cli) is installed."
echo "Please see the instructions here: https://docs.cloudfoundry.org/cf-cli/install-go-cli.html"
exit 1
else
echo $'\nYou have the CF command line client already; that\'s awesome!\n'
fi
export API="https://api.run.pivotal.io"
echo "API: ${API}"
if [ -z ${1+x} ]; then
echo "I need your PWS username (email address) to continue."
exit 1
else
echo "Username: $1"
fi
if [ -z ${2+x} ]; then
echo "I need your PWS password to continue."
exit 1
else
echo "Password is {SECRET}."
fi
if [ -z ${3+x} ]; then
echo "I need your PWS ORG name to continue."
exit 1
else
echo "Org: $3"
fi
if [ -z ${4+x} ]; then
echo "I need your PWS SPACE name to continue."
exit 1
else
echo "Space: $4"
fi
echo $'Logging in to PWS using the details provided...\n'
cf login -a ${API} -u $1 -p $2 -o $3 -s $4
if [[ $? != 0 ]]; then
echo "Abort. There was a problem logging in to PWS with the details given. Please resolve the problem and try again."
exit 1
else
echo $'\nWe\'re logged in. Let\'s deploy some code!\n'
fi
echo "Building the Trader UI..."
pushd .
cd trader-app-ui
npm install
npm run build
echo "Pushing the Trader UI to PWS..."
cf push -f manifest.yml --random-route
popd
echo "All done. The Axon Trader application is now ready to test."