Files
Auth/Auth.API/appsettings.json
2026-08-05 21:15:14 +03:00

32 lines
793 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"ConnectionStrings": {
"PostgreDB": "Host=localhost;Database=Auth;Username=test;Password=test;Port=5432;IncludeErrorDetail=true;"
},
"AllowedHosts": "*",
"JWT": {
"Key": "thisisasecretKeyIneedtoprovideenoughletterstomakeitwork",
"Issuer": "https://hello.com",
"Audience": "hello.com",
"DurationInMinutes": 10
},
"EmailTemplate": {
"EmailConfirmation": "placeHolder",
"ResetPassword": "placeHolder"
},
"hostname": "placeHolder",
"MailSettings": {
"Mail": "merge1942@gmail.com",
"DisplayName": "Merge",
"UserName": "merge1942@gmail.com",
"Password": "ftyqwyqpqtixalxp",
"Host": "smtp.gmail.com",
"Port": 587
}
}