Skip to content

unusual-thoughts/IdentityServer4.Contrib.Postgresql

 
 

Repository files navigation

IdentityServer4.Contrib.Postgresql

Build status Build status NuGet Version

Install-Package IdentityServer4.Contrib.Postgresql

e.g AspNet Core

using IdentityServer4.Contrib.Postgresql.Extensions;

public void ConfigureServices(IServiceCollection services)
{
   var builder = services.AddIdentityServer();
   builder.AddConfigurationStore().AddOperationalStore();
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
 {
    app.UseIdentityServer():
 }

This will register all the IdentityServer stores and optionally a Marten's IDocumentSession as well as IDocumentStore if you pass a connection string;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 84.9%
  • PowerShell 10.2%
  • Shell 4.9%