Files
space-game/apps/backend/appsettings.json

37 lines
875 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"StaticData": {
"DataRoot": "../../shared/data/"
},
"Balance": {
"SimulationSpeedMultiplier": 1.5,
"YPlane": 4,
"ArrivalThreshold": 16,
"MiningRate": 10,
"MiningCycleSeconds": 10,
"TransferRate": 56,
"DockingDuration": 1.2,
"UndockingDuration": 1.2,
"UndockDistance": 42
},
"OrbitalSimulation": {
"SimulatedSecondsPerRealSecond": 0
},
"Auth": {
"ConnectionString": "Host=127.0.0.1;Port=5432;Database=spacegame;Username=spacegame;Password=spacegame"
},
"Jwt": {
"Issuer": "space-game",
"Audience": "space-game-viewer",
"SigningKey": "dev-only-change-me-space-game-signing-key",
"AccessTokenLifetimeMinutes": 30,
"RefreshTokenLifetimeDays": 30
},
"AllowedHosts": "*"
}