-
Notifications
You must be signed in to change notification settings - Fork 214
/
Copy pathdeploy.sh
executable file
·99 lines (80 loc) · 2.64 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
#!/bin/bash
set -e
echo "--------------------------"
echo " _____ _ _ "
echo " / ____| | | | |"
echo "| | __ ___ _ __ | | | |"
echo "| | |_ |/ _ \ '_ \| | | |"
echo "| |__| | __/ | | | |__| |"
echo " \_____|\___|_| |_|\____/ "
echo "--------------------------"
# Process command arguments
while [[ $# -gt 0 ]]; do
case "$1" in
-c|--cdk-context)
cdk_context_path="$2"
shift 2
;;
-p|--parameter-file)
parameter_file_path="$2"
shift 2
;;
-e|--env)
env_name="$2"
shift 2
;;
-h|--help)
echo "-c, --cdk-context ... Path to the cdk.json file"
echo "-p, --parameter-file ... Path to the parameter.ts file"
echo "-e, --env ... Environment name (e.g., dev, prod)"
echo "-h, --help ... Show this message"
exit 0
;;
*)
echo "Unknown option: $1"
exit 1
;;
esac
done
# Check if the file exists
if [[ -n "$cdk_context_path" && ! -f "$cdk_context_path" ]]; then
echo "Error: CDK context file not found: $cdk_context_path"
exit 1
fi
if [[ -n "$parameter_file_path" && ! -f "$parameter_file_path" ]]; then
echo "Error: Parameter file not found: $parameter_file_path"
exit 1
fi
pushd /tmp
# Delete the repository in /tmp if it exists
rm -rf generative-ai-use-cases
# Clone GenU
git clone https://github.com/aws-samples/generative-ai-use-cases
pushd generative-ai-use-cases
# Install npm packages
npm ci
# If cdk.json is specified, overwrite it
if [[ -n "$cdk_context_path" ]]; then
echo "Overwrite the cdk.json by $cdk_context_path"
cp -f $cdk_context_path packages/cdk/cdk.json
fi
# If parameter.ts is specified, overwrite it
if [[ -n "$parameter_file_path" ]]; then
echo "Overwrite the parameter.ts by $parameter_file_path"
cp -f $parameter_file_path packages/cdk/parameter.ts
fi
# Bootstrap CDK
npx -w packages/cdk cdk bootstrap
# Build deployment command
deploy_cmd="npm run cdk:deploy:quick"
# If environment name is specified, add it to the deployment command
if [[ -n "$env_name" ]]; then
deploy_cmd="$deploy_cmd -- -c env=$env_name"
fi
# Execute deployment
$deploy_cmd
# Get the url of the deployed CloudFront
weburl=`aws cloudformation describe-stacks --stack-name GenerativeAiUseCasesStack --output json | jq -r ".Stacks[0].Outputs[] | select(.OutputKey==\"WebUrl\") | .OutputValue"`
echo "*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"
echo "Welcome to GenU: $weburl"
echo "*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*"