Index: iknow-api/Program.cs
===================================================================
--- iknow-api/Program.cs	(revision c11d3a3e5ecfc9bc60609c1fae1e70e64b8e1e0a)
+++ iknow-api/Program.cs	(revision 618be76765be90ceccc8ac3fb0758d602ca2f998)
@@ -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();
 
