Index: iknow-api/Program.cs
===================================================================
--- iknow-api/Program.cs	(revision 0b165236b06a903c67e0ef3e2591587153c47501)
+++ iknow-api/Program.cs	(revision 28592255f5866211ebd76ae2286b6373daa6b937)
@@ -1,2 +1,4 @@
+using Microsoft.EntityFrameworkCore;
+
 var builder = WebApplication.CreateBuilder(args);
 
@@ -15,4 +17,8 @@
 }
 
+builder.Services.AddDbContext<AppDbContext>(options =>
+    options.UseNpgsql(builder.Configuration.GetConnectionString("DefaultConnection")));
+
+    
 app.UseHttpsRedirection();
 
