Skip to content

IdentityServer4.MongoDB is a persistence layer for IdentityServer v4 configuration data that uses MongoDB as a data store

License

Notifications You must be signed in to change notification settings

diegomvh/IdentityServer4.MongoDB

Repository files navigation

MongoDb Persistence for IdentityServer4

Current status: Beta

This package supports the IdentityServer functionality.

Usage

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        var config = Configuration.GetSection("MongoDbRepository");

        services.AddIdentityServer()
            .AddTemporarySigningCredential()
            .AddConfigurationStore(config)
            .AddOperationalStore(config);
    }
}

Base on implementation of EntityFramework's support

And the good practices of

Credits

MongoDb Persistence for IdentityServer is built using the following open source projects:

About

IdentityServer4.MongoDB is a persistence layer for IdentityServer v4 configuration data that uses MongoDB as a data store

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages