This folder contains various samples to showcase how to use ASP.NET Core Identity with this DynamoDB store provider. There is not a huge difference to the standard use of ASP.NET Core Identity apart from hooking the DynamoDB store provider. So, it's always helpful to go through the ASP.NET Core Identity documentation first if you haven't already.
In order to run any of the sample here, you need DynamoDB exposed through 127.0.0.1:8000
. If you have Docker on you box, you can easily have one by executing the below command:
docker run -p 8000:8000 dwmkerr/dynamodb -sharedDb
You also need .NET Core SDK installed to be able to execute dotnet
commands.
- IdentitySample.Mvc: This is the exact sample in Identity repository, but it works with this DynamoDB provider rather than the EntityFramework one.