Update .gitignore to exclude appsettings files and add appsettings.example.json

This commit is contained in:
HueByte
2026-02-18 13:56:30 +01:00
parent cfa8b90d04
commit fe3a120134
2 changed files with 24 additions and 0 deletions
@@ -0,0 +1,22 @@
{
"ConnectionStrings": {
"DefaultConnection": "Data Source=echohub.db"
},
"Jwt": {
"Secret": "CHANGE_ME_minimum_32_characters_long_secret_key",
"Issuer": "EchoHub.Server",
"Audience": "EchoHub.Client"
},
"Server": {
"Name": "My EchoHub Server",
"Description": "A self-hosted EchoHub chat server"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
}
},
"AllowedHosts": "*"
}