first changes

This commit is contained in:
2026-07-09 10:04:14 +05:30
parent 438ab2cdbd
commit 49188b8fbb
3 changed files with 23 additions and 2 deletions
+1 -2
View File
@@ -1,7 +1,6 @@
# ── Secrets / local config ───────────────────────────────────────────── # ── Secrets / local config ─────────────────────────────────────────────
# Keep the base appsettings.json (no real secrets); ignore env-specific ones. # Keep the base appsettings.json (no real secrets); ignore env-specific ones.
**/appsettings.*.json
!**/appsettings.json
.env .env
.env.* .env.*
!**/.env*.example !**/.env*.example
@@ -0,0 +1,14 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"ConnectionStrings": {
"DefaultConnection": "Host=localhost;Port=5432;Database=ERPCore;Username=postgres;Password=postgres"
},
"Jwt": {
"SigningKey": "dev-only-signing-key-please-change-me-0123456789"
}
}
@@ -0,0 +1,8 @@
{
"ConnectionStrings": {
"DefaultConnection": ""
},
"Jwt": {
"SigningKey": ""
}
}