mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-15 06:48:54 -04:00
16 lines
648 B
C#
16 lines
648 B
C#
namespace Cleanuparr.Shared.Configuration;
|
|
|
|
public static class ConfigurationKeys
|
|
{
|
|
public const string DatabaseProvider = "DATABASE_PROVIDER";
|
|
public const string PostgresHost = "POSTGRES_HOST";
|
|
public const string PostgresPort = "POSTGRES_PORT";
|
|
public const string PostgresUser = "POSTGRES_USER";
|
|
public const string PostgresPassword = "POSTGRES_PASS";
|
|
public const string PostgresDatabase = "POSTGRES_DB";
|
|
public const string PostgresExtraParams = "POSTGRES_EXTRA_PARAMS";
|
|
public const string Port = "PORT";
|
|
public const string BindAddress = "BIND_ADDRESS";
|
|
public const string BasePath = "BASE_PATH";
|
|
}
|