Index: ChapterX.API/appsettings.Development.json.example
===================================================================
--- ChapterX.API/appsettings.Development.json.example	(revision a7550ca4790b7d1a7515a4a688b871e32313d8bf)
+++ ChapterX.API/appsettings.Development.json.example	(revision a7550ca4790b7d1a7515a4a688b871e32313d8bf)
@@ -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"
+    }
+  }
+}
