feat: allow specifying database password in separate config parameter

This commit is contained in:
spiral
2022-06-13 15:23:13 -04:00
parent 9dd3fba7e6
commit b75e59da2f
2 changed files with 8 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ namespace PluralKit.Core;
public class CoreConfig
{
public string Database { get; set; }
public string? DatabasePassword { get; set; }
public string RedisAddr { get; set; }
public bool UseRedisMetrics { get; set; } = false;
public string SentryUrl { get; set; }