19 lines
730 B
C#
19 lines
730 B
C#
namespace DexDemoBackend;
|
|
|
|
public class AppConfig
|
|
{
|
|
public string DbHost { get; set; } = "postgres";
|
|
public string DbPort { get; set; } = "5440";
|
|
public string DbName { get; set; } = "dexdemo";
|
|
public string DbUser { get; set; } = "dexdemo";
|
|
public string DbPassword { get; set; } = "dexdemo";
|
|
public string Issuer { get; set; } = "https://dex.127.0.0.1.sslip.io/";
|
|
public bool InsecureDevMode { get; set; }
|
|
public string? InsecureDevEmail { get; set; }
|
|
public string[] AllowedOrigins { get; set; } = ["http://localhost:3000", "https://localhost:3000"];
|
|
|
|
public string ConnectionString =>
|
|
$"Host={DbHost};Port={DbPort};Database={DbName};Username={DbUser};Password={DbPassword}";
|
|
}
|
|
|