-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathappsettings.json
More file actions
32 lines (30 loc) · 882 Bytes
/
appsettings.json
File metadata and controls
32 lines (30 loc) · 882 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
29
30
31
32
{
"ConnectionStrings": {
"DefaultConnection": "Server=DESKTOP-SJBVJGD\\SQLEXPRESS;Database=BookAppStore;Trusted_Connection=True;MultipleActiveResultSets=True"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"Application": {
"LoginPath": "/login",
"AppDomain": "http://localhost:5000/",
"EmailConfirmation": "confirm-email?uid={0}&token={1}",
"ResetPassword": "reset-password?uid={0}&token={1}"
},
"SMTPConfig": {
"SenderAddress": "no-reply@bookappstore.com",
"SenderDisplayName": "BookAppStore Team",
"Username": "83259d5d61b70b",
"Password": "8b45a4eb6c610a",
"Host": "smtp.mailtrap.io",
"Port": 587,
"EnableSSL": true,
"UserDefaultCredentials": true,
"IsBodyHTML": true
}
}