-
Notifications
You must be signed in to change notification settings - Fork 2
/
appsettings.json
29 lines (28 loc) · 909 Bytes
/
appsettings.json
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
{
"EmailConfiguration": {
"SmtpServer": "smtp.gmail.com",
"SmtpPort": 465,
"SmtpUsername": "gmail",
"SmtpPassword": "gmail",
"PopServer": "smtp.gmail.com",
"PopPort": 995,
"PopUsername": "gmail",
"PopPassword": "gmail"
},
"ConnectionStrings": {
//"DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=NaijaStartupApp;Trusted_Connection=True;MultipleActiveResultSets=true"
},
"AppSettings": {
"PayStackSecret": "sk_test_1d38668a56a7a442f893e26817bc6e87e41151d8",
"PayStackPublic": "pk_test_388f35589b6fa63e562b8910782758ce72da7f6f",
"Secret": "THIS IS TO SIGN AND VERIFY JWT TOKENS, REPLACE IT WITH YOU OWN SECRET, IT CAN BE ANY STRING",
"AdminMessagingEmail": "[email protected]",
"AdminMessagingDisplayName": "Naija Startup"
},
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "*"
}