wabbajack/Wabbajack.Server/appsettings.json
2023-10-12 14:23:51 -06:00

42 lines
1.2 KiB
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"WabbajackSettings": {
"RunBackendNexusRoutines": false,
"TempFolder": "c:\\tmp\\server_temp",
"MetricsFolder": "c:\\tmp\\server_metrics",
"AuthoredFilesFolder": "c:\\tmp\\server_authored_files",
"AuthorAPIKeyFile": "c:\\tmp\\author_keys.txt",
"PatchesFilesFolder": "c:\\tmp\\patches",
"MirrorFilesFolder": "c:\\tmp\\mirrors",
"NexusCacheFolder": "c:\\tmp\\nexus-cache",
"ProxyFolder": "c:\\tmp\\proxy",
"GitHubKey": "",
"CesiDB": {
"Endpoint": "http://localhost:15984",
"Database": "cesi",
"Username": "cesi",
"Password": "password"
},
"MetricsDB": {
"Endpoint": "http://localhost:15984",
"Database": "metrics",
"Username": "wabbajack",
"Password": "password"
},
"AuthoredFilesS3": {
"AccessKey": "<ACCESS_KEY>",
"SecretKey": "<SECRET_KEY>",
"ServiceURL": "<SERVICE_URL>",
"BucketName": "authored-files",
"BucketCacheFile": "c:\\tmp\\bucket-cache.txt"
}
},
"AllowedHosts": "*"
}