https://github.com/imjaroiswebdev/aws-lambda-best-sushi-app
Event driven AWS Serverless backed Sushi delivery for demonstration and follow up of the article "Monitoring and Debugging an AWS Lambda Backed Sushi Delivery App without knowing about AWS" also in this repository
https://github.com/imjaroiswebdev/aws-lambda-best-sushi-app
aws-lambda dashbird serverless-architectures serverless-framework
Last synced: 11 months ago
JSON representation
Event driven AWS Serverless backed Sushi delivery for demonstration and follow up of the article "Monitoring and Debugging an AWS Lambda Backed Sushi Delivery App without knowing about AWS" also in this repository
- Host: GitHub
- URL: https://github.com/imjaroiswebdev/aws-lambda-best-sushi-app
- Owner: imjaroiswebdev
- Created: 2018-03-23T01:56:41.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-27T11:46:08.000Z (about 8 years ago)
- Last Synced: 2025-04-01T13:51:14.100Z (about 1 year ago)
- Topics: aws-lambda, dashbird, serverless-architectures, serverless-framework
- Language: JavaScript
- Size: 7.59 MB
- Stars: 2
- Watchers: 0
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](http://www.serverless.com)
# AWS Lambda backed Sushi Delivery App (demo)
This repository contains the code for the demostrations and following of the article [Monitoring and Debugging an AWS Lambda Backed Sushi Delivery App without knowing about AWS](https://dashbird.io/blog/monitoring-debugging-lambda-app-without-knowing-of-aws/).
#### Structure of demo code...
```bash
# This repository
├── Article
│ ├── assets
│ └── content.md # Main article of the repository
└── the-best-sushi-app
├── api
└── client
```
## Instructions to start the API...
```bash
$ npm i -g serverless
```
Proceed to [configure your AWS credentials](https://serverless.com/framework/docs/providers/aws/cli-reference/config-credentials/). Then...
```bash
$ cd the-best-sushi-app/api
$ npm i
# deploy the backend api endpoints to AWS with...
$ serverless deploy -v
```
#### You might expect to get a result like this one...

## Instructions to start the Client...
First of all you will need to create a [Firebase account](https://firebase.google.com/) it's a peace of cake! And for start it is virtually free to use.
Then, copy the file `.env.example` a rename to `.env` updating all the variables inside it with your firebase configuration keys and with your previously generated backend JSON API base url, after that you can proceed to install dependencies and start the app, as follow...
```bash
$ cd the-best-sushi-app/client
$ yarn
$ yarn start
```
#### You might expect to see in action The Best Sushi App 🍣

Don't forget to read the complete [article](https://dashbird.io/blog/monitoring-debugging-lambda-app-without-knowing-of-aws/) 😉