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.
# This repository
├── Article
│ ├── assets
│ └── content.md # Main article of the repository
└── the-best-sushi-app
├── api
└── client
$ npm i -g serverless
Proceed to configure your AWS credentials. Then...
$ cd the-best-sushi-app/api
$ npm i
# deploy the backend api endpoints to AWS with...
$ serverless deploy -v
First of all you will need to create a Firebase account 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...
$ cd the-best-sushi-app/client
$ yarn
$ yarn start
Don't forget to read the complete article 😉