-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappsettings.json
40 lines (40 loc) · 986 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
30
31
32
33
34
35
36
37
38
39
40
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"ApplicationDbContext": "Server=localhost;Port=5432;Database=faka;User Id=postgres;Password=114514;"
},
"JWT": {
"ValidAudience": "http://localhost:7033",
"ValidIssuer": "http://localhost:7033",
"Secret": "JWTAuthenticationHIGHsecuredPasswordVVVp1OH7Xzyr"
},
"BaseUrls": {
"Server": "http://localhost:7033",
"Client": "http://localhost:4200"
},
"PaymentGateways": {
"Stripe": {
"ApiKey": "sk_test_123456",
"WebhookSecret": "whsec_123456"
},
"Alipay": {
"AppId": "2019091767145019",
"MerchantPrivateKey": "MIIEvQIBADANB...",
"AlipayPublicKey": "MIIBIjANBg.."
}
},
"SMTP": {
"Sender": "[email protected]",
"SenderName": "FAKA",
"Server": "smtp.test.com",
"Port": 587,
"Username": "test",
"Password": "password"
}
}