The Cloud Resume Challenge: Introduction
Published: 2024-01-02
Recently, I discovered the Cloud Resume Challenge, an open-source project designed to assist individuals in building and showcasing their proficiency in cloud computing and associated technologies.
To align the challenge with my preferences, I’ve reorganized and consolidated the suggested steps. Here’s the refined set of steps I’ve developed:
- Create a basic webpage using HTML, CSS, and Javascript.
- Establish a cloud infrastructure (S3, CloudFront, DNS) for hosting the webpage.
- Deploy the webpage to the cloud.
- Implement automation for the deployment of both the cloud infrastructure and the webpage.
- Integrate a backend service and a database to track page views.
- Enhance the webpage by incorporating a CV page and providing an overview of recent work experience.
- Attain the AWS Certified Solutions Architect certification and include it on the CV.
I will delve into the specifics of each step in individual blog posts.
For now, let’s just do some general setup. I’ve decided that I won’t store the different components (frontend, backend, infrastructure) in separate repositories. So I’ve created a GitHub repository where I will store all my code. I will put each component into its own directory structure. So right now, the repository looks like this on my local machine:
$ tree .
.
├── backend-counter
├── infra
└── webpage
That’s all for now. Next, I’m going to build the frontend, including this blog.