PluralKit/PluralKit.Core/CoreConfig.cs

23 lines
859 B
C#
Raw Normal View History

using Serilog.Events;
namespace PluralKit.Core;
public class CoreConfig
{
public string Database { get; set; }
public string? MessagesDatabase { get; set; }
public string? DatabasePassword { get; set; }
2022-01-13 12:26:25 -05:00
public string RedisAddr { get; set; }
public string SentryUrl { get; set; }
public string InfluxUrl { get; set; }
public string InfluxDb { get; set; }
public string LogDir { get; set; }
public string? ElasticUrl { get; set; }
2022-12-03 11:49:19 +00:00
public string? SeqLogUrl { get; set; }
2024-08-22 07:10:35 +09:00
public string? DispatchProxyUrl { get; set; }
public string? DispatchProxyToken { get; set; }
public string DashboardBaseUrl { get; set; } = "https://dash.pluralkit.local";
public LogEventLevel ConsoleLogLevel { get; set; } = LogEventLevel.Debug;
public LogEventLevel ElasticLogLevel { get; set; } = LogEventLevel.Information;
}