New Angular based web version #1

Closed
thomas.nuyken wants to merge 150 commits from main into ddd
Showing only changes of commit 4db35dbdb5 - Show all commits

View File

@@ -33,10 +33,6 @@ public sealed class WebAppFactory : WebApplicationFactory<IWebApiMarker>, IAsync
// Force application startup (i.e. initialization and validation) // Force application startup (i.e. initialization and validation)
_ = CreateClient(); _ = CreateClient();
using var scope = Services.CreateScope();
await using var dbContext = scope.ServiceProvider.GetRequiredService<ApplicationDbContext>();
await dbContext.Database.MigrateAsync();
_postgresRespawner = await PostgresRespawner.CreateAsync(_database.GetConnectionString()); _postgresRespawner = await PostgresRespawner.CreateAsync(_database.GetConnectionString());
} }