-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathappsettings.json
63 lines (63 loc) · 1.46 KB
/
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
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
55
56
57
58
59
60
61
62
63
{
"Data": {
"useSqLite": "true",
"SqlLiteConnectionString": "Data Source=WebMail.db",
"SqlServerConnectionString": "server=.;database=WebMail;integrated security=true;MultipleActiveResultSets=true;",
"PasswordEncryptionKey": "IVbdD56Lk/{p;<2!"
},
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
},
"SmsSettingsTwillio": {
"Sid": "",
"Token": "",
"RequestUrl": "https://api.twilio.com/2010-04-01/Accounts/{Sid}/Messages.json",
"From": ""
},
"Email": {
"From": "",
"Subject": "",
"SmtpLogin": {
"Username": "",
"Password": ""
},
"SendGrid": {
"Username": "",
"Password": ""
}
},
"Paypal": {
"BusinessEmail": ""
},
"Authentication": {
"Google": {
"ClientId": "254008611878-qmvrj08cl0nqbvpfo4gfjs4se0mr775q.apps.googleusercontent.com",
"ClientSecret": "5PXs3Yzgx06P9vcv4aLVDxS1"
},
"Facebook": {
"AppId": "ChangeMe",
"AppSecret": "ChangeMe"
},
"Microsoft": {
"ClientId": "81eff0dc-7a6b-409b-90ff-33412a1e8249",
"ClientSecret": "fqeAHM23@[=ujfvLHDC276{"
},
"Twitter": {
"ConsumerKey": "ChangeMe",
"ConsumerSecret": "ChangeMe"
},
"Github": {
"ClientId": "ChangeMe",
"ClientSecret": "ChangeMe"
},
"LinkedIn": {
"ClientId": "ChangeMe",
"ClientSecret": "ChangeMe"
}
}
}