-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
28 lines (28 loc) · 900 Bytes
/
appsettings.json
File metadata and controls
28 lines (28 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"ConnectionStrings": {
"Postgre": "Host=localhost;Database=URLShortener;Username=postgres;Password=root",
"PostgreSQLDockerDev": "Host=localhost;Port=5432;Username=aryan;Password=a123;Database=ShortenerDB;Include Error Detail=true;",
"PostgreSQLDockerProd": "Host=db;Port=5432;Username=aryan;Password=a123;Database=ShortenerDB;"
},
"JwtSettings": {
"SecretKey": "Today Is A Great Day. this is just because Im fixing some good bugs!",
"Issuer": "R1pperDoctor",
"Audience": "Client",
"ExpiresInMinutes": 30
},
"SmtpSettings": {
"Server": "smtp.example.com",
"Port": 587,
"SenderName": "PexitaSMTP",
"SenderEmail": "example@pexita.com",
"Username": "smtp-username",
"Password": "smtp-password"
},
"AllowedHosts": "*"
}