This repo contains the example project for the the Operating and troubleshooting Lambda-based applications guide. Read the guide for full instructions and a walkthrough.
Important: this application uses various AWS services and there are costs associated with these services after the Free Tier usage - please see the AWS Pricing page for details. You are responsible for any AWS costs incurred. No warranty is implied in this example.
.
├── README.MD <-- This instructions file
├── backend <-- Coffee lookup backend application
├── frontend <-- Coffee lookup frontend application
- AWS CLI already configured with Administrator permissions
- AWS SAM CLI installed
- NodeJS 12.x installed
-
Create an AWS account if you do not already have one and login.
-
Clone the repo onto your local development machine:
git clone https://github.com/aws-samples/aws-lambda-operators-guide
- Set up the coffee-lookup backend
cd ./backend/setup
node ./setup.js
- Build and deploy the SAM template:
cd ../
sam build
sam deploy --guided
- When prompted for parameters, enter a stack name, Region and other parameters as needed.
- To install the frontend:
cd ../frontend
npm install
npm run serve
The guide referenced at the top of this README file contains additional information about each example's design and architecture.
If you have any questions, please contact the author or raise an issue in the GitHub repo.
See CONTRIBUTING for more information.
This library is licensed under the MIT-0 License. See the LICENSE file.