Implemented Login workflow
This commit is contained in:
3
SpotiParty.AppHost/.aspire/settings.json
Normal file
3
SpotiParty.AppHost/.aspire/settings.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"appHostPath": "../SpotiParty.AppHost.csproj"
|
||||
}
|
||||
@@ -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();
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user