Build backend skeleton

This commit is contained in:
KS Jannette
2026-05-21 03:26:14 -04:00
parent fd0b75ad98
commit 588b3fa026
9 changed files with 352 additions and 0 deletions

12
backend/appsettings.json Normal file
View File

@@ -0,0 +1,12 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"BowlingLeagueConnection": "Data Source=BowlingLeague.sqlite"
}
}