Files
UnrealEngine/Engine/Source/Programs/Horde/HordeServer/appsettings.Local.json
2025-05-18 13:04:45 +08:00

44 lines
929 B
JSON

{
"Horde":
{
// Don't use shared system-wide folders for storing data
"Installed": false,
// Don't allow agents to try to upgrade; the assembly was built locally
"EnableUpgradeTasks": false,
// Don't allow conforms to run
"EnableConformTasks": false,
// Allow any local agents to automatically enrol
"AutoEnrollAgents": true,
// Apply config changes immediately on startup
"ForceConfigUpdateOnStartup": true,
"Commits":
{
// Don't replicate metadata from Perforce commits
"ReplicateMetadata": false,
// Don't replicate content from Perforce commits
"ReplicateContent": false
},
// Enable the experimental plugin for local development
"Plugins": {
"Experimental": {
"Enabled": true
}
}
},
"Serilog": {
"MinimumLevel": {
"Override": {
"HordeServer.Agents.Fleet": "Warning",
"HordeServer.Agents.Fleet.Providers.NoOpFleetManager": "Warning"
}
}
}
}