move backend to subfolder
This commit is contained in:
parent
d4d1f2f981
commit
8d09663eff
80 changed files with 98 additions and 88 deletions
39
tanks-backend/TanksServer/appsettings.json
Normal file
39
tanks-backend/TanksServer/appsettings.json
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning",
|
||||
"TanksServer": "Debug",
|
||||
"Microsoft.AspNetCore.HttpLogging": "Information"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*",
|
||||
"Kestrel": {
|
||||
"Endpoints": {
|
||||
"Http": {
|
||||
"Url": "http://localhost:3000"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ServicePointDisplay": {
|
||||
"Hostname": "172.23.42.29",
|
||||
"Port": 2342
|
||||
},
|
||||
"GameRules": {
|
||||
"DestructibleWalls": true,
|
||||
"PowerUpSpawnChance": 0.1,
|
||||
"MaxPowerUpCount": 15,
|
||||
"BulletTimeoutMs": 30000,
|
||||
"SpawnDelayMs": 3000,
|
||||
"IdleTimeoutMs": 30000,
|
||||
"MoveSpeed": 37.5,
|
||||
"TurnSpeed": 0.5,
|
||||
"ShootDelayMs": 450,
|
||||
"BulletSpeed": 75
|
||||
},
|
||||
"Host": {
|
||||
"EnableServicePointDisplay": true,
|
||||
"ServicePointDisplayMinFrameTimeMs": 28,
|
||||
"ClientScreenMinFrameTime": 5
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue