Skip to content

Commit

Permalink
Merge pull request #752 from skoruba/release/2.0.0-preview1
Browse files Browse the repository at this point in the history
2.0.0-preview-beta1
  • Loading branch information
skoruba authored Nov 17, 2020
2 parents 59c217b + 185756c commit 4993559
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@

The application is written in the **Asp.Net Core MVC - using .NET Core 3.1**

**NOTE:** Currently works only with **IdentityServer4 version 3** 🚀

## Requirements

- [Install](https://www.microsoft.com/net/download/windows#/current) the latest .NET Core 3.x SDK (using older versions may lead to 502.5 errors when hosted on IIS or application exiting immediately after starting when self-hosted)
Expand All @@ -22,11 +20,23 @@ The application is written in the **Asp.Net Core MVC - using .NET Core 3.1**

- Install the dotnet new template:

### Stable version 1.0.0 works with **IdentityServer4 version 3** 🚀

```sh
dotnet new -i Skoruba.IdentityServer4.Admin.Templates::1.0.0
```

- Create new project:
### Beta version 2.0.0 works with **IdentityServer4 version 4** 🚀

- 🔒 **NOTE:** This version affects your database data if you use the default database migrations that are part of the project - double check the migrations according to your database provider and create a database backup

- The source code for version **2.0.0** is available in the branch [release/2.0.0-beta1](https://github.com/skoruba/IdentityServer4.Admin/tree/release/2.0.0-beta1)

```sh
dotnet new -i Skoruba.IdentityServer4.Admin.Templates::2.0.0-beta1
```

### Create new project:

```sh
dotnet new skoruba.is4admin --name MyProject --title MyProject --adminemail "[email protected]" --adminpassword "Pa$$word123" --adminrole MyRole --adminclientid MyClientId --adminclientsecret MyClientSecret --dockersupport true
Expand Down Expand Up @@ -161,11 +171,20 @@ docker-compose up -d
### Docker images
- Docker images will be available also in [docker hub](https://hub.docker.com/u/skoruba)
- AdminUI:
- **Stable version:**
- `skoruba/identityserver4-admin:1.0.0`
- **Beta version:**
- `skoruba/identityserver4-admin:2.0.0-beta1`
- Admin Api:
- **Stable version:**
- `skoruba/identityserver4-admin-api:1.0.0`
- **Beta version:**
- `skoruba/identityserver4-admin-api:2.0.0-beta1`
- STS:
- **Stable version:**
- `skoruba/identityserver4-sts-identity:1.0.0`
- **Beta version:**
- `skoruba/identityserver4-sts-identity:2.0.0-beta1`

### Publish Docker images to Docker hub
- Check the script in `build/publish-docker-images.ps1` - change the profile name according to your requirements.
Expand Down Expand Up @@ -722,7 +741,7 @@ It is possible to define the configuration according the client type - by defaul
- [x] Protect keys for dataprotection from Azure Key Vault ([#715](https://github.com/skoruba/IdentityServer4.Admin/pull/715))

### 2.0.0
- [ ] Update to IdentityServer4 version 4 ([#633](https://github.com/skoruba/IdentityServer4.Admin/issues/633))
- [x] Update to IdentityServer4 version 4 ([#633](https://github.com/skoruba/IdentityServer4.Admin/issues/633))

### 3.0.0:

Expand Down

0 comments on commit 4993559

Please sign in to comment.