-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappsettings.json
More file actions
54 lines (54 loc) · 1.49 KB
/
Copy pathappsettings.json
File metadata and controls
54 lines (54 loc) · 1.49 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"OnlineBookStoreMVC": "Server=localhost;Database=OnlineBookStoreMVC;Trusted_Connection=True;TrustServerCertificate=true"
},
"SMTPConfig": {
"EmailSenderAddress": "abdulmuheezalabi@gmail.com",
"EmailSenderName": "abdulmuheezalabi@gmail.com",
"EmailSenderPassword": "ugjsnmnjweogenkt",
"SMTPServerAddress": "smtp.gmail.com",
"SMTPServerPort": 587,
"SMTPServerEnableSSL": true,
"AdminEmail": "abdulmuheezalabi@gmail.com"
},
"MailConfig": {
"mailApikey": "AIzaSyDV9cWFC-eu8fLg0KvRXCl_HPxZ5ddDW5U"
},
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Microsoft.AspNetCore.Hosting.Diagnostics": "Error",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"WriteTo": [
{
"Name": "File",
"Args": {
"path": "C:\\Desktop\\log.json",
"rollingInterval": "Day",
"rollOnFileSizeLimit": true,
"formatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact"
}
}
],
"Enrich": [
"WithMachineName",
"WithProcessId",
"WithThreadId"
]
},
"Paystack": {
"PublicKey": "pk_test_31b3d8aa8cc4ec382aa4829fcae196e4a609cc02",
"SecretKey": "sk_test_8b4b66305adcb976e2a5ab541f5c440493c58f2a"
}
}