This repository was archived by the owner on Mar 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdeploy.sh
115 lines (106 loc) · 2.4 KB
/
deploy.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
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
112
113
114
115
#!/bin/bash
function usage() {
echo "Usage: $(basename "$0") [option...] {development|staging|production}" >&2
echo
echo " Coding Garden Community App frontend deployment script"
echo " Deploys the frontend to the specified environment on now.sh"
echo
echo " -h, --help Show this message"
echo " -n, --now-token Specify the now token. (or set environment variable \$NOW_TOKEN)"
echo " -e, --node-env Specify the node environemt. (or set environment variable \$NODE_ENV)"
echo " -a, --alias Specify the deploy alias. (or set environment variable \$DEPLOY_ALIAS)"
echo
exit 1
}
while :
do
case "$1" in
-h|--help)
usage
exit 0
;;
-n|--now-token)
# TODO: validate input length and chars
NOW_TOKEN="$2"
shift 2
;;
-e|--node-env)
# TODO: validate input length and chars
NODE_ENV="$2"
shift 2
;;
-a|--alias)
# TODO: validate input length and chars
DEPLOY_ALIAS="$2"
shift 2
;;
--)
shift
break
;;
-*)
echo "Error: Unknown option: $1" >&2
echo
usage
exit 1
;;
*)
break
;;
esac
done
if [ -z "$NOW_TOKEN" ]; then
echo "Error: NOW_TOKEN is not set via environment variable or as argument"
echo
usage
exit 1
fi
if [ "$1" ]; then
env=$1
elif [ -n "$TRAVIS_BRANCH" ]; then
case "$TRAVIS_BRANCH" in
develop)
env=development
;;
master)
env=production
;;
*)
echo "Missing or invalid environment."
usage
exit 1
;;
esac
fi
case "$env" in
development)
if [ -z "$NODE_ENV" ]; then
NODE_ENV=development
fi
if [ -z "$DEPLOY_ALIAS" ]; then
DEPLOY_ALIAS=web-dev.codinggarden.community
fi
;;
production)
if [ -z "$NODE_ENV" ]; then
NODE_ENV=production
fi
if [ -z "$DEPLOY_ALIAS" ]; then
DEPLOY_ALIAS=codinggarden.community
fi
;;
*)
echo "Missing or invalid environment."
usage
exit 1
;;
esac
if [ -z "$NOW_TOKEN" ]; then
echo "Error: NOW_TOKEN is not set via environment variable or as argument"
echo
usage
exit 1
fi
echo "Deploying to $env environment with alias $DEPLOY_ALIAS"
DEPLOYMENT_URL=$(npx now --token "$NOW_TOKEN" deploy -e NODE_ENV="$NODE_ENV")
npx now --token "$NOW_TOKEN" alias $DEPLOYMENT_URL $DEPLOY_ALIAS