Deploying to AWS
In this section, we are going to implement continuous deployment for the Vue.js 3 application with GitHub Actions and AWS App Runner.
This process can be triggered manually after thoroughly checking the staging application to make sure it satisfies all requirements before pushing it to production. However, it can also be automated to happen immediately after the staging is completed.
In this demo, we are going to create the deployment pipeline for deploying to the AWS production server using AWS App Runner and also automate the process at once.
Important note
It’s advisable to trigger the deployment process manually, which gives room to manually check all the requirements on the staging environment before deploying a new release to production.
To deploy to AWS, you will need an AWS account and an AWS IAM account with proper permissions. In this section, we explored how to create pipelines and deploy our project to AWS. In the next section, we...