Implemented Login workflow

This commit is contained in:
2025-11-30 15:19:49 +01:00
parent 2b5b0c1067
commit 825bd80ef0
22 changed files with 330 additions and 56 deletions

View File

@@ -0,0 +1,3 @@
{
"appHostPath": "../SpotiParty.AppHost.csproj"
}

View File

@@ -2,6 +2,13 @@ using Projects;
var builder = DistributedApplication.CreateBuilder(args);
var web = builder.AddProject<SpotiParty_Web>("web");
var dbServer = builder.AddPostgres("database")
.WithDataVolume("database-data");
var database = dbServer.AddDatabase("SpotiParty");
var web = builder.AddProject<SpotiParty_Web>("web")
.WithReference(database)
.WaitForStart(database);
builder.Build().Run();

View File

@@ -12,6 +12,7 @@
<ItemGroup>
<PackageReference Include="Aspire.Hosting.AppHost" Version="13.0.1" />
<PackageReference Include="Aspire.Hosting.PostgreSQL" Version="13.0.1" />
</ItemGroup>
<ItemGroup>