/Identity

Authentication server for inshapardaz

Primary LanguageCSS

Identity

Authentication server for inshapardaz

Build Status

Build status

Components

  1. Indentity Server
  2. Database

Tools and Frameworks requires

Rest Service and WebSite

Checkout code and

dotnet restore

dotnet build

dotnet run

Adding migrations for Identity Server

Source

dotnet ef migrations add ApplicationDbMigration -c ApplicationDbContext -o Data/Migrations/Application/ApplicationDb

dotnet ef migrations add InitialIdentityServerPersistedGrantDbMigration -c PersistedGrantDbContext -o Data/Migrations/IdentityServer/PersistedGrantDb

dotnet ef migrations add InitialIdentityServerConfigurationDbMigration -c ConfigurationDbContext -o Data/Migrations/IdentityServer/ConfigurationDb

Update database

'dotnet ef database update -c ApplicationDbMigration'

dotnet ef database update -c PersistedGrantDbContext

'dotnet ef database update -c ConfigurationDbContext'