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

45 lines
1.0 KiB
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"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",
"DevSeedUsers": [
{
"Email": "gm",
"Password": "gm",
"Roles": [ "gm" ]
},
{
"Email": "admin",
"Password": "admin",
"Roles": [ "admin", "gm" ]
}
]
},
"Jwt": {
"Issuer": "space-game-dev",
"Audience": "space-game-viewer",
"SigningKey": "space-game-development-signing-key-change-me",
"AccessTokenLifetimeMinutes": 30,
"RefreshTokenLifetimeDays": 30
}
}