Auth server is a sample app purpose is to run auth on local for Dev and test for non production use only.
$ dotnet add package Hasulab.AuthServer.Simulatorbuilder.Services.AddAuthServerServices();using AuthServer.Extensions;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddAuthServerServices();
...
var app = builder.Build();
...
and add services
...
app.UseAuthServer();
...
app.Run();
Please see the AuthServer.Sample project