-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeploy.json
More file actions
19 lines (19 loc) · 590 Bytes
/
deploy.json
File metadata and controls
19 lines (19 loc) · 590 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"deploy": {
"directory": "~/projects/example",
"options": {
"step-1": {
"message": "Setting up S3...",
"command": "aws s3 mb s3://codedeploydemobucket"
},
"step-2": {
"message": "Creating application...",
"command": "aws deploy create-application --application-name HelloWorld_App"
},
"step-3": {
"message": "Deploying application...",
"command": "aws deploy push --application-name HelloWorld_App --s3-location s3://codedeploydemobucket/HelloWorld_App.zip --ignore-hidden-files"
}
}
}
}