Phase 1: Project scaffolding and infrastructure
- Scaffold Budget.Api (ASP.NET Core Web API, net10.0) with EF Core + Npgsql - Scaffold Budget.Client (Vite + React + TypeScript) with /api proxy to localhost:5000 - Define all entity models: Budget, Income, Outgo, KnownUser, BudgetShare - Configure AppDbContext with EF mappings and cascade deletes - Add InitialCreate migration - Configure SPA static file serving + fallback in Program.cs - Add Dockerfile (multi-stage: node + dotnet sdk + aspnet runtime) - Add .env.example with all required environment variables Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+36
@@ -0,0 +1,36 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{827E0CD3-B72D-47B6-A68D-7590B98EB39B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Budget.Api", "src\Budget.Api\Budget.Api.csproj", "{39EAC168-4C28-4259-8A96-8E7B4D95F22B}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|x64 = Debug|x64
|
||||
Debug|x86 = Debug|x86
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Release|x64 = Release|x64
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{39EAC168-4C28-4259-8A96-8E7B4D95F22B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{39EAC168-4C28-4259-8A96-8E7B4D95F22B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{39EAC168-4C28-4259-8A96-8E7B4D95F22B}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{39EAC168-4C28-4259-8A96-8E7B4D95F22B}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{39EAC168-4C28-4259-8A96-8E7B4D95F22B}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{39EAC168-4C28-4259-8A96-8E7B4D95F22B}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{39EAC168-4C28-4259-8A96-8E7B4D95F22B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{39EAC168-4C28-4259-8A96-8E7B4D95F22B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{39EAC168-4C28-4259-8A96-8E7B4D95F22B}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{39EAC168-4C28-4259-8A96-8E7B4D95F22B}.Release|x64.Build.0 = Release|Any CPU
|
||||
{39EAC168-4C28-4259-8A96-8E7B4D95F22B}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{39EAC168-4C28-4259-8A96-8E7B4D95F22B}.Release|x86.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{39EAC168-4C28-4259-8A96-8E7B4D95F22B} = {827E0CD3-B72D-47B6-A68D-7590B98EB39B}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
Reference in New Issue
Block a user