-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.sh
More file actions
101 lines (81 loc) · 2.58 KB
/
deploy.sh
File metadata and controls
101 lines (81 loc) · 2.58 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
#!/bin/bash
# ----------------------
# KUDU Deployment Script
# Version: 1.0.17
# ----------------------
# Helpers
# -------
exitWithMessageOnError () {
if [ ! $? -eq 0 ]; then
echo "An error has occurred during web site deployment."
echo $1
exit 1
fi
}
# Setup
# -----
SCRIPT_DIR="${BASH_SOURCE[0]%\\*}"
SCRIPT_DIR="${SCRIPT_DIR%/*}"
ARTIFACTS=$SCRIPT_DIR/../artifacts
KUDU_SYNC_CMD=${KUDU_SYNC_CMD//\"}
if [[ ! -n "$DEPLOYMENT_SOURCE" ]]; then
DEPLOYMENT_SOURCE=$SCRIPT_DIR
fi
if [[ ! -n "$NEXT_MANIFEST_PATH" ]]; then
NEXT_MANIFEST_PATH=$ARTIFACTS/manifest
if [[ ! -n "$PREVIOUS_MANIFEST_PATH" ]]; then
PREVIOUS_MANIFEST_PATH=$NEXT_MANIFEST_PATH
fi
fi
if [[ ! -n "$DEPLOYMENT_TARGET" ]]; then
DEPLOYMENT_TARGET=$ARTIFACTS/wwwroot
else
KUDU_SERVICE=true
fi
# Install Kudu Sync if not present
if [[ ! -n "$KUDU_SYNC_CMD" ]]; then
echo Installing Kudu Sync
npm install kudusync -g --silent
exitWithMessageOnError "npm failed"
KUDU_SYNC_CMD="kudusync"
fi
##################################################################################################################################
# Deployment
# ----------
echo "Handling node.js deployment."
# 1. Install dependencies
cd "$DEPLOYMENT_SOURCE"
echo "Installing root dependencies..."
npm install
exitWithMessageOnError "Root npm install failed"
# 2. Build client
cd "$DEPLOYMENT_SOURCE/client"
echo "Installing client dependencies..."
npm install
exitWithMessageOnError "Client npm install failed"
echo "Building client..."
CI=false npm run build
exitWithMessageOnError "Client build failed"
# 3. Install server dependencies
cd "$DEPLOYMENT_SOURCE/server"
echo "Installing server dependencies..."
npm install --production --force
exitWithMessageOnError "Server npm install failed"
# Add node-cache explicitly
npm install node-cache --save
exitWithMessageOnError "node-cache install failed"
# 4. Copy client build to server
echo "Copying client build to server/public..."
mkdir -p "$DEPLOYMENT_SOURCE/server/public"
cp -r "$DEPLOYMENT_SOURCE/client/build/"* "$DEPLOYMENT_SOURCE/server/public/"
# 5. KuduSync
if [[ "$IN_PLACE_DEPLOYMENT" -ne "1" ]]; then
"$KUDU_SYNC_CMD" -v 50 -f "$DEPLOYMENT_SOURCE" -t "$DEPLOYMENT_TARGET" -n "$NEXT_MANIFEST_PATH" -p "$PREVIOUS_MANIFEST_PATH" -i ".git;.hg;.deployment;deploy.sh"
exitWithMessageOnError "Kudu Sync failed"
fi
# 6. Start server directly (no PM2)
cd "$DEPLOYMENT_TARGET/server"
echo "Starting server..."
node server.js
##################################################################################################################################
echo "Finished successfully."