Skip to content

Latest commit

 

History

History
 
 

samples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

ASP.NET Core Identity DynamoDB Store Samples

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.

Prerequisites

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.

Samples