feat(backend): scaffold ASP.NET Core Web API + xunit test project

This commit is contained in:
meelstorm
2026-07-17 17:35:40 +00:00
committed by EugeneTes
parent caf0376323
commit b17a845ff7
7 changed files with 126 additions and 0 deletions

13
Backend/appsettings.json Normal file
View File

@@ -0,0 +1,13 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Lander": {
"CliPath": "publish/GameCli/GameCli",
"ModelPath": "models/ppo_lander.onnx"
}
}