A microservice implemeting all users functionalities like preregister to an account, authenticate, etc
This project is build with .NET 6 and prepared to run as an AWS Lambda.
As a pre-requisite, you'll need to install .NET 6 SDK and then install the AWS Lambda tools for .NET
If you're in a hurry, this should do the trick:
$ dotnet new -i Amazon.Lambda.Templates
$ cd test/Otis.Users.Tests/
$ dotnet test
$ cd src/Otis.Users/
$ dotnet lambda package
Then upload the file src/Otis.Users/bin/Release/net6.0/Otis.Users.zip
to the AWS lambda function on the AWS Web Console.