From the course: Programming Foundations: Application Architecture
Unlock the full course today
Join today to access over 24,700 courses taught by industry experts.
Use recipe cloud-based application
From the course: Programming Foundations: Application Architecture
Use recipe cloud-based application
Let's see how different components work together in a cloud application. Here we have a recipe application that displays various recipes with their ingredients and instructions. This is built on Amazon Web Services and uses a combination of cloud services to deliver this software to us. The front end is built with HTML, CSS, and JavaScript. These are static files hosted on Amazon S3, which is one of the many services of AWS. Let's try adding a new recipe. In the set of recipes, we now see the new recipe. This functionality is driven by our back end that processes data and communicates with the database. Our back end is powered by AWS Lambda, which allows us to run the application code in a serverless environment. This means we don't have to worry about managing servers. AWS automatically scales the back end to handle any number of requests. Amazon API gateway connects our front end to our lambda functions. It's responsible for accepting routing and processing API requests to the…
Practice while you learn with exercise files
Download the files the instructor uses to teach the course. Follow along and learn by watching, listening and practicing.