Index: ChapterX.API/appsettings.Development.json.example
===================================================================
--- ChapterX.API/appsettings.Development.json.example	(revision dc383dd3199c7db4b47fd42b458a73717189db88)
+++ ChapterX.API/appsettings.Development.json.example	(revision dc383dd3199c7db4b47fd42b458a73717189db88)
@@ -0,0 +1,16 @@
+{
+  "ConnectionStrings": {
+    "Database": "Host=localhost;Port=5432;Database=your_db;User Id=your_user;Password=your_password;SSL Mode=Disable"
+  },
+  "Jwt": {
+    "Key": "your-secret-key-at-least-32-characters-long!!",
+    "Issuer": "ChapterX",
+    "Audience": "ChapterX"
+  },
+  "Logging": {
+    "LogLevel": {
+      "Default": "Information",
+      "Microsoft.AspNetCore": "Warning"
+    }
+  }
+}
Index: ChapterX.API/appsettings.json
===================================================================
--- ChapterX.API/appsettings.json	(revision 7fbb91c66b46c3063caa934a83d6d0681406c83c)
+++ ChapterX.API/appsettings.json	(revision dc383dd3199c7db4b47fd42b458a73717189db88)
@@ -8,5 +8,5 @@
   "AllowedHosts": "*",
   "Jwt": {
-    "Key": "change-this-to-a-long-secret-key-at-least-32-chars!!",
+    "Key": "",
     "Issuer": "ChapterX",
     "Audience": "ChapterX"
