1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Allow configuring postgres with environment variables

This commit is contained in:
ta264
2022-03-28 21:45:55 +01:00
committed by Robin Dadswell
parent 80b1aa9a2c
commit bd53092f0c
6 changed files with 50 additions and 9 deletions
@@ -0,0 +1,12 @@
namespace NzbDrone.Core.Datastore
{
public class PostgresOptions
{
public string Host { get; set; }
public int Port { get; set; }
public string User { get; set; }
public string Password { get; set; }
public string MainDb { get; set; }
public string LogDb { get; set; }
}
}