wabbajack/Wabbajack.Server/appsettings.json

42 lines
1.2 KiB
JSON
Raw Normal View History

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"WabbajackSettings": {
2022-06-25 20:22:06 +00:00
"RunBackendNexusRoutines": false,
2021-11-27 18:31:35 +00:00
"TempFolder": "c:\\tmp\\server_temp",
"MetricsFolder": "c:\\tmp\\server_metrics",
"AuthoredFilesFolder": "c:\\tmp\\server_authored_files",
2021-11-27 20:18:41 +00:00
"AuthorAPIKeyFile": "c:\\tmp\\author_keys.txt",
"PatchesFilesFolder": "c:\\tmp\\patches",
2021-12-17 23:40:45 +00:00
"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"
2022-06-22 01:38:42 +00:00
},
"MetricsDB": {
"Endpoint": "http://localhost:15984",
"Database": "metrics",
"Username": "wabbajack",
"Password": "password"
2023-10-12 20:23:51 +00:00
},
"AuthoredFilesS3": {
"AccessKey": "<ACCESS_KEY>",
"SecretKey": "<SECRET_KEY>",
"ServiceURL": "<SERVICE_URL>",
"BucketName": "authored-files",
"BucketCacheFile": "c:\\tmp\\bucket-cache.txt"
}
},
"AllowedHosts": "*"
}