What’s the easiest way to deploy a web app with continuous delivery?

0
10
Asked By TechWanderer92 On

I'm looking to deploy a React web application that includes authentication and uses a PostgreSQL database. I've already set up Infrastructure as Code (IaC), with RDS, VPC, and a deployment pipeline in place. I keep considering Lambda@Edge for server-side rendering, but I'm currently using Next.js with some boilerplate code. I tried running the app through S3 and CloudFront, but it's been quite challenging. I've looked into AWS Amplify as well, but that seems to introduce more issues too.

3 Answers

Answered By ReactNinja45 On

I have a simple React site on S3 and CloudFront. It’s a lot easier to manage with Terraform for infrastructure. I utilize client-side routing, and for dynamic functionalities, I leverage Lambda and API Gateway. Plus, I've CI/CD integrated into the whole workflow!

Answered By NextGenDev88 On

For my projects, I rely on SST with the Next.js component. The setup is quite straightforward, and I handle deployment using GitHub Actions or Bitbucket pipelines, which makes it very efficient.

Answered By CloudMaster99 On

I’ve been using AWS Amplify for my React apps, and honestly, it’s pretty smooth for deployment. It simplifies a lot of processes and integrates seamlessly with both front-end and back-end management.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.