This example shows how to build an angular app backed by a serverless API.
This example demonstrates how to run a service locally, using the serverless-offline plugin. It provides a REST API to provide authentication and manage account stored in a DynamoDB.
A local DynamoDB instance is provided by the serverless-dynamodb-local plugin.
In the back
folder, run:
npm install
serverless dynamodb install
Both front end and back end have to started separately.
In the back
folder, run:
serverless offline
In the front
folder, run:
npm start
Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.