Skip to content

Commit cc9c5ff

Browse files
Update hw5-25.md
1 parent 90ae9a1 commit cc9c5ff

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/assignments/hw5-25.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ You'll be using it to host your calculator frontend code. With this you will be
9292

9393
Amplify integrates with [Amazon S3](https://docs.aws.amazon.com/amplify/latest/userguide/hosting.html) to store and serve static assets like HTML, CSS, and JavaScript files. It provides an automated deployment pipeline that syncs with your GitHub repository and updates the frontend whenever changes are pushed to the main branch.
9494

95-
Your task is to set up Amplify to host the frontend of your application. To complete this part of the assignment, refer to the following AWS documentation:
95+
Your task is to create a S3 bucket, upload frontend code in build/ folder to AWS S3 bucket, and set up Amplify to host the frontend of your application. To complete this part of the assignment, refer to the following AWS documentation:
9696
- [Getting started with Amplify hosting with S3](https://docs.aws.amazon.com/amplify/latest/userguide/deploy-website-from-s3.html)
9797

9898
### 4. Use Github actions to automatically deploy on each push to main
@@ -112,7 +112,7 @@ For example:
112112
.github/workflows/deploy-aws-s3.yml (for AWS S3 deployment)
113113
.github/workflows/deploy-aws-lambda.yml (for AWS lambda deployment)
114114

115-
Sample GitHub Actions Workflow
115+
Sample GitHub Actions Workflow (Ensures secure authentication by retrieving necessary AWS credentials from GitHub Secrets.)
116116
```yaml
117117
name:
118118

@@ -145,9 +145,9 @@ You should create a [Github workflow](https://docs.github.com/en/actions/writing
145145
- Uses the AWS CLI to update the lambda code (giving the CLI access to your authentication secret and AWS region through the environment).
146146
147147
#### Deploying frontend code
148-
- [Using Amplify With Github](https://docs.aws.amazon.com/amplify/latest/userguide/setting-up-GitHub-access.html)
149-
150-
148+
- Use Node.js to deploy frontend code.
149+
- Deploys the built application to an AWS S3 bucket.
150+
- Triggers AWS Amplify to redeploy the latest frontend version from S3. [Using Amplify With Github](https://docs.aws.amazon.com/amplify/latest/userguide/setting-up-GitHub-access.html)
151151
152152
153153

0 commit comments

Comments
 (0)