You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
96 lines
2.2 KiB
JSON
96 lines
2.2 KiB
JSON
{
|
|
"Horde": {
|
|
"DashboardUrl": "https://localhost:3000",
|
|
"DisableAuth": true,
|
|
"CorsEnabled": true,
|
|
"CorsOrigin": "https://localhost:5003;http://localhost:3000",
|
|
"LogFileProviderType": "Local",
|
|
"Storage": {
|
|
"Url": "https://localhost:57001"
|
|
}
|
|
},
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Information",
|
|
"Override": {
|
|
"MongoDB": "Warning", // For bundled MongoDB output
|
|
"Redis": "Warning", // For bundled Redis output
|
|
"Microsoft": "Warning",
|
|
"Microsoft.AspNetCore": "Warning",
|
|
"Microsoft.Hosting": "Information",
|
|
"Horde.Build.Authentication": "Warning",
|
|
"System.Net.Http.HttpClient": "Warning",
|
|
"Grpc": "Warning",
|
|
"Horde.Build.Services.Impl.IssueService": "Debug"
|
|
}
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
|
|
"Mongo": {
|
|
// this assumes a mongo db were we have localhost exemption, e.g. we do not need to authenticate
|
|
// if using mongo via a docker container you will need to update this
|
|
"ConnectionString": "mongodb://localhost:27017",
|
|
"RequireTls12": true
|
|
},
|
|
|
|
// scylla is normally not enabled in development but we still configure it so we can easily switch
|
|
"Scylla": {
|
|
"LocalDatacenterName": "datacenter1",
|
|
"LocalKeyspaceSuffix": "local"
|
|
},
|
|
|
|
"Horde_Storage": {
|
|
// assume a single instance is running
|
|
"LeaderElectionImplementation": "Static",
|
|
|
|
// use mongo for any database needs
|
|
"ReferencesDbImplementation": "Mongo",
|
|
"ContentIdStoreImplementation": "Mongo",
|
|
"BlobIndexImplementation": "Mongo",
|
|
|
|
// store blobs in the filesystem
|
|
"StorageImplementations": [
|
|
"Filesystem"
|
|
],
|
|
|
|
// disable old api that we do not want to use
|
|
"TransactionLogWriterImplementation": "Memory",
|
|
"RefDbImplementation": "Memory"
|
|
},
|
|
|
|
"Filesystem": {
|
|
"RootDir": "$(ExecutableLocation)/BlobStorage"
|
|
},
|
|
|
|
"Replication": {
|
|
"StateRoot": "$(ExecutableLocation)/ganymede",
|
|
"ReplicationPollFrequencySeconds": 15,
|
|
"CurrentSite": "local-test",
|
|
"Enabled": false
|
|
},
|
|
|
|
"GC": {
|
|
"BlobCleanupServiceEnabled": false,
|
|
"CleanOldBlobs": false,
|
|
"CleanOldRefRecords": false
|
|
},
|
|
|
|
"Jupiter": {
|
|
"CurrentSite": "local"
|
|
},
|
|
|
|
// disable auth and allow any namespace
|
|
"Auth": {
|
|
"Method": "Disabled"
|
|
},
|
|
|
|
"Namespaces": {
|
|
"Policies": {
|
|
"*": {
|
|
"Claims": [ "*" ]
|
|
}
|
|
}
|
|
}
|
|
}
|