From 5fb90f9d83391adee29927dffd8879871fde3ba2 Mon Sep 17 00:00:00 2001 From: James Britton Date: Tue, 14 Mar 2023 14:16:22 +0000 Subject: [PATCH] Removed developer settings and also moved license key into main appsettings --- Base Installation/appsettings.Development.json | 3 --- Base Installation/appsettings.json | 3 ++- 2 files changed, 2 insertions(+), 4 deletions(-) delete mode 100644 Base Installation/appsettings.Development.json diff --git a/Base Installation/appsettings.Development.json b/Base Installation/appsettings.Development.json deleted file mode 100644 index 9126067..0000000 --- a/Base Installation/appsettings.Development.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "LicenseKey":"" -} \ No newline at end of file diff --git a/Base Installation/appsettings.json b/Base Installation/appsettings.json index 7e09730..7db1653 100644 --- a/Base Installation/appsettings.json +++ b/Base Installation/appsettings.json @@ -9,6 +9,7 @@ "IdentityConnectionString":"Server=localhost,1433;User Id=sa;Password=Password123!;Database=IdentityExpressDbMigrationTest;", "IdentityServerConnectionString":"Server=localhost,1433;User Id=sa;Password=Password123!;Database=IdentityExpressDbMigrationTest;", "RequireHttpsMetadata":false, + "LicenseKey":"", "PasswordPolicy":{ "RequireDigit":true, "RequireLowercase":true, @@ -27,4 +28,4 @@ "AddUserPassword":false, "EnableEnforcerAuthorization":false } -} \ No newline at end of file +}