add postgres

This commit is contained in:
Alex Bezdieniezhnykh
2024-11-12 15:57:36 +02:00
parent 85139b4fd2
commit 2336c15aa4
15 changed files with 224 additions and 78 deletions
@@ -3,4 +3,5 @@
public class ConnectionStrings
{
public string AzaionDb { get; set; } = null!;
public string AzaionDbAdmin { get; set; } = null!;
}
+2 -1
View File
@@ -4,5 +4,6 @@ public class JwtConfig
{
public string Issuer { get; set; } = null!;
public string Audience { get; set; } = null!;
public string Secret { get; set; }
public string Secret { get; set; } = null!;
public double TokenLifetimeHours { get; set; }
}