feat: add docker-compose for PostgreSQL and initial EF Core migration

This commit is contained in:
Claude Agent
2026-03-19 11:41:43 +01:00
parent 5c03c18ac7
commit 0714961dd6
6 changed files with 881 additions and 1 deletions

View File

@@ -18,6 +18,7 @@
<PackageReference Include="Grpc.AspNetCore" Version="2.76.0" />
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.2.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.5" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.5.0" />
</ItemGroup>

View File

@@ -1,6 +1,6 @@
{
"ConnectionStrings": {
"DefaultConnection": "Host=localhost;Port=5432;Database=nexusrmm;Username=nexusrmm;Password=nexusrmm_dev"
"DefaultConnection": "Host=localhost;Port=5433;Database=nexusrmm;Username=nexusrmm;Password=nexusrmm_dev"
},
"Cors": {
"Origins": ["http://localhost:5173"]