mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-04 00:26:07 +02:00
Update .gitignore to exclude appsettings files and add appsettings.example.json
This commit is contained in:
@@ -422,6 +422,8 @@ FodyWeavers.xsd
|
||||
|
||||
.dev/*
|
||||
appsettings.json
|
||||
appsettings.*.json
|
||||
!appsettings.example.json
|
||||
CLAUDE.md
|
||||
*.db
|
||||
*.db-*
|
||||
@@ -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": "*"
|
||||
}
|
||||
Reference in New Issue
Block a user