diff --git a/src/content/docs/identityserver/overview/packaging.mdx b/src/content/docs/identityserver/overview/packaging.mdx index 1157537a..1e8063b4 100644 --- a/src/content/docs/identityserver/overview/packaging.mdx +++ b/src/content/docs/identityserver/overview/packaging.mdx @@ -63,6 +63,7 @@ Duende IdentityServer Quickstart UI (UI assets only) duende-is-ui Duende IdentityServer with ASP.NET Core Identity duende-is-aspid [C#] Web/Duende/IdentityServer Duende IdentityServer with Entity Framework Stores duende-is-ef [C#] Web/Duende/IdentityServer Duende IdentityServer with In-Memory Stores and Test Users duende-is-inmem [C#] Web/Duende/IdentityServer +Duende IdentityServer duende-is [C#] Web/Duende/IdentityServer ``` ## Template Descriptions @@ -233,6 +234,27 @@ The template targets SQLite by default, but we have included scripts to easily s [Read more about the Entity Framework Core setup here.](/identityserver/data/ef) +### Duende IdentityServer + +The Duende IdentityServer template is our most feature-rich offering and a great starting point for developers who want a simple yet effective UI/UX experience. + +```bash +dotnet new duende-is +``` + +The template is built on the Entity Framework Core template but provides an administrative UI for managing clients, scopes, and claims against a database storage engine. +It also has a diagnostics dashboard showing system information, including the licensing tier and features currently used in your IdentityServer deployment. + +#### Third-party Dependencies + +This template includes several third-party dependencies: + +- [Serilog](https://serilog.net/) +- [Bootstrap 5](https://getbootstrap.com) +- [Bootstrap 5 tags](https://github.com/lekoala/bootstrap5-tags) +- [JQuery](https://jquery.org) +- [Entity Framework Core](https://learn.microsoft.com/en-us/ef/core/) + ### Duende IdentityServer with ASP.NET Core Identity The **Duende IdentityServer with ASP.NET Core Identity** template integrates with ASP.NET Identity to diff --git a/src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx b/src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx index f16adddc..e025fb81 100644 --- a/src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx +++ b/src/content/docs/identityserver/upgrades/identityserver4-to-duende-identityserver-v7.mdx @@ -1,15 +1,15 @@ --- -title: "IdentityServer4 to Duende IdentityServer v7.2" +title: "IdentityServer4 to Duende IdentityServer v7.3" sidebar: order: 138 - label: IdentityServer4 → v7.2 + label: IdentityServer4 → v7.3 --- import { Code } from "astro/components"; import { Steps } from "@astrojs/starlight/components"; import { Tabs, TabItem } from "@astrojs/starlight/components"; -This upgrade guide covers upgrading from IdentityServer4 to Duende IdentityServer v7.2. +This upgrade guide covers upgrading from IdentityServer4 to Duende IdentityServer v7.3. IdentityServer4 reached its end of life (EOL) on December 13, 2022. It is strongly advised to migrate to Duende IdentityServer. Depending on your current version of IdentityServer4, different steps may be required. @@ -344,14 +344,14 @@ Update the IdentityServer4 dependencies in your IdentityServer host project to D ```diff lang="xml" title=".csproj" - -+ ++ ``` You'll need to make a similar change for all IdentityServer4 packages, including `IdentityServer4.EntityFramework` and `IdentityServer4.AspNetIdentity`. For example: ```diff lang="xml" title=".csproj" - -+ ++ ``` The IdentityModel package was renamed to Duende IdentityModel and needs updating if you reference it directly: @@ -542,4 +542,4 @@ As part of your upgrade from IdentityServer4 to Duende IdentityServer, we recomm - [JwtRequestValidator signature changes](https://github.com/DuendeSoftware/IdentityServer/pull/537) - [Changes in AppAuth URL validator for logout](https://github.com/DuendeSoftware/IdentityServer/pull/619) - [Use of EmailClaimType option in ASP.NET Identity integration](https://github.com/DuendeSoftware/IdentityServer/pull/625) -- `ClientConfigurationStore` now uses `IConfigurationDbContext` to allow for customization. If you have a customized Entity Framework Core-based store, you may need to update your constructors. \ No newline at end of file +- `ClientConfigurationStore` now uses `IConfigurationDbContext` to allow for customization. If you have a customized Entity Framework Core-based store, you may need to update your constructors. diff --git a/src/content/docs/index.mdx b/src/content/docs/index.mdx index c7b37d5e..a0e2645a 100644 --- a/src/content/docs/index.mdx +++ b/src/content/docs/index.mdx @@ -41,6 +41,8 @@ import Testimonial from "~/components/testimonial.astro"; ```bash title="Terminal" dotnet new install Duende.Templates + dotnet new duende-is -o DuendeIdentityServer + dotnet run --project DuendeIdentityServer ```