From c604b6f5ac06512ce3050c35968fc3dcb28b7a45 Mon Sep 17 00:00:00 2001 From: JudahGabriel Date: Wed, 23 Aug 2017 15:23:28 -0500 Subject: [PATCH] URL updates. --- Readme.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Readme.md b/Readme.md index 95a9912..1e5491a 100644 --- a/Readme.md +++ b/Readme.md @@ -1,7 +1,10 @@ # ![RavenDB logo](https://github.com/JudahGabriel/RavenDB.Identity/blob/master/RavenDB.Identity/nuget-icon.png?raw=true) RavenDB.Identity # RavenDB identity provider for ASP.NET Core. + The simple and easy Identity provider for RavenDB and ASP.NET Core. Use Raven to store your users and logins. +(This is an Identity Provider for .NET Core. If you're looking for an Identity Provider for MVC6+ and the full .NET framework, see our [sister project](.) + ## Instructions ## 1. In Startup.cs: @@ -12,14 +15,14 @@ public void ConfigureServices(IServiceCollection services) services .AddRavenDb(Configuration.GetConnectionString("RavenDbConnection")) // Create a RavenDB DocumentStore singleton. .AddRavenDbAsyncSession() // Create a RavenDB IAsyncDocumentSession for each request. - .AddRavenDbIdentity(); // Use Raven for users and roles. AppUser is your class, a simple DTO to hold user data. See https://github.com/JudahGabriel/RavenDB.Identity/blob/master/Sample.Web.NetCore/Models/AppUser.cs + .AddRavenDbIdentity(); // Use Raven for users and roles. AppUser is your class, a simple DTO to hold user data. See https://github.com/JudahGabriel/RavenDB.Identity/blob/master/Sample/Models/AppUser.cs ... } ``` -2. In your controller actions, call .SaveChanges when you're done making changes. Typically this is done via a [RavenController base class](https://github.com/JudahGabriel/RavenDB.Identity/blob/master/Sample.Web.NetCore/Controllers/RavenController.cs). +2. In your controller actions, call .SaveChanges when you're done making changes. Typically this is done via a [RavenController base class](https://github.com/JudahGabriel/RavenDB.Identity/blob/master/Sample/Controllers/RavenController.cs). 3. You're done! -Need help? See the [sample app](https://github.com/JudahGabriel/RavenDB.Identity/tree/master/Sample.Web.NetCore). \ No newline at end of file +Need help? See the [sample app](https://github.com/JudahGabriel/RavenDB.Identity/tree/master/Sample). \ No newline at end of file