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 serverlessProceed to configure your AWS credentials. Then...
  $ cd the-best-sushi-app/api
  $ npm i
  # deploy the backend api endpoints to AWS with...
  $ serverless deploy -vFirst 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 startDon't forget to read the complete article π

