Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.02 KB

README.md

File metadata and controls

34 lines (23 loc) · 1.02 KB

Salus

Identity Server implementing OAuth 2.1 and OpenID Connect 1.0 specifications. Salus, in Roman religion, was the goddess of safety and welfare.

The project is developing as an alternative to IdentityServer4, which will reach the end of support on the 3rd Dec 2022.

Installation

Install-Package Salus.AspNetCore

Usage

var builder = WebApplication.CreateBuilder(args);
builder.Services.AddIdentityServer();

var app = builder.Build();
app.UseIdentityServer();

app.Run();

Roadmap

Contributing