Building a Serverless Website on AWS (and GCP)
The article discusses building a serverless website using AWS and GCP. It highlights the differences in implementation between the two cloud providers while following a similar architecture. The author shares insights on challenges faced during the project and the benefits of hands-on experience with cloud services.
- ▪The project involves building a resume site using cloud services from AWS and GCP.
- ▪AWS services used include S3, CloudFront, API Gateway, Lambda, and DynamoDB, while GCP uses Cloud Storage, Cloud Functions, and Firestore.
- ▪The author emphasizes the importance of understanding the differences in implementation between AWS and GCP.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 2539459) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Dan Phillips Posted on May 16 • Originally published at danphillips.cloud Building a Serverless Website on AWS (and GCP) #aws #devops #cloud #serverless Multi-cloud means understanding that every provider works differently. You only really learn that by actually building on them. The Cloud Resume Challenge is a project by Forrest Brazeal that asks you to build and deploy a resume site using cloud services.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).