🦄 Modernizing Wild Rydes with modern technologies
The article discusses the modernization of the Wild Rydes project using contemporary technologies. The author replaced the original stack with tools like Terraform, GitHub Actions, and Vite for a more efficient development process. Key improvements include enhanced security and a better CI/CD experience.
- ▪Wild Rydes is a serverless application originally used by AWS hands-on labs.
- ▪The author transitioned from Amplify to S3 + CloudFront for app delivery and adopted Terraform for infrastructure management.
- ▪The frontend was updated using Vite, allowing for better asset management and security.
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 === 49966) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Cristhian Ferreira Posted on May 29 🦄 Modernizing Wild Rydes with modern technologies #serverless #terraform #devops #aws Wild Rydes was an old project used by AWS hands-on labs to show how to deploy a serverless application using its services. It consists of a Uber-like application where you would request rides by UNICORNS (🦄). In the following article I will guide you in how I implemented this project using modern technologies like Terraform, Github Actions and OpenID Connect.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).