Archives: FAQs

Q: How are GitHub Actions used in this flow?

 A: The blog shows using GitHub Actions CI/CD pipelines so that when code is pushed to main (or PRs), Docker image is built, then deployed to the EC2 instance via SSH (or similar). This automates shipping new versions.

Q: What is Rocket in Rust, and why use it for REST APIs?

A: Rocket is a web framework for Rust that makes creating REST endpoints more ergonomic. The tutorial uses it to build a REST API and then deploys that API reliably. Using Rust + Rocket ensures performance, type safety, and minimal overhead.

Back To Top