Files
vtuber-awards/Backend/appsettings.Development.json
T
2026-06-25 19:52:46 +02:00

37 lines
814 B
JSON

{
"Frontend": {
"AllowedOrigins": [
"http://localhost:5173",
"http://127.0.0.1:5173",
"http://localhost:4173",
"http://127.0.0.1:4173"
]
},
"ConnectionStrings": {
"Postgres": "Host=localhost;Port=5433;Database=vtuber_star_awards_dev;Username=vtsa_dev;Password=change-me-local-only"
},
"SeedData": {
"Mode": "demo"
},
"DemoAdmin": {
"Enabled": true,
"Login": "jayuhime_admin",
"Email": "admin@example.local",
"Password": "change-me-for-demo",
"TwitchUserId": "jayuhime_admin",
"DisplayName": "Jayuhime Admin"
},
"TwitchAuth": {
"ClientId": "",
"ClientSecret": "",
"RedirectUri": "",
"Scope": ""
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}