Ignore:
Timestamp:
10/20/25 16:10:33 (11 months ago)
Author:
imbrsk <boris696boris@…>
Branches:
master
Children:
5aa102d, 9a57e89
Parents:
0b16523
Message:

Implement user management features with database integration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • iknow-api/Program.cs

    r0b16523 r2859225  
     1using Microsoft.EntityFrameworkCore;
     2
    13var builder = WebApplication.CreateBuilder(args);
    24
     
    1517}
    1618
     19builder.Services.AddDbContext<AppDbContext>(options =>
     20    options.UseNpgsql(builder.Configuration.GetConnectionString("DefaultConnection")));
     21
     22   
    1723app.UseHttpsRedirection();
    1824
Note: See TracChangeset for help on using the changeset viewer.