need server and core webapp to work at same time for testing purposes

This commit is contained in:
2026-05-03 18:04:40 -04:00
parent ec6a8c446a
commit 3460ce6b04
4 changed files with 15 additions and 4 deletions

View File

@@ -21,6 +21,7 @@ var bootstrapService = new ServerBootstrapService(db, coreClient, cryptoService)
await bootstrapService.InitializeAsync();
var builder = WebApplication.CreateBuilder(args);
builder.WebHost.UseUrls("http://127.0.0.1:5000/");
builder.Services.AddSingleton(db);
builder.Services.AddScoped<RtcCallService>();