-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
105 lines (105 loc) · 2.16 KB
/
appsettings.json
File metadata and controls
105 lines (105 loc) · 2.16 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"Organization": {
"Company": "DPD Polska Sp. z o.o.",
"Name": "Jan Kowalski",
"Address": "Przejazd 2",
"City": "Warszawa",
"CountryCode": "PL",
"PostalCode": "01454",
"Phone": "48732121242",
"Email": "dpd@dpd.com.pl"
},
"Authentication": {
"IssuerSigningKey": "ubeeg2aigeiDongei1Ni3oel5az2oes0vohd6ohweiphaoyahP231",
"Issuer": "ecommerce",
"Audience": "ecommerce",
"ExpiryInMinutes": 120
},
"Postgres": {
"ConnectionString": "Host=localhost;User ID=postgres;Password=mysecretpassword;Port=5432;Database=EcommerceDb"
},
"BlobAzureStorage": {
"ConnectionString": "UseDevelopmentStorage=true"
},
"Cart": {
"LifeTime": 7
},
"Sieve": {
"CaseSensitive": false,
"DefaultPageSize": 10,
"MaxPageSize": 50,
"ThrowExceptions": true,
"IgnoreNullsOnNotEqual": true,
"DisableNullableTypeExpressionForSorting": false
},
"CursorPagination": {
"DefaultPageSize": 10,
"MaxPageSize": 50
},
"Stripe": {
"ApiKey": "",
"Mode": "payment",
"Currency": "USD",
"BlobStorageUrl": "http://localhost:10000",
"WebhookSecret": ""
},
"InPost": {
"OrganizationId": "4152",
"ApiKey": "",
"BaseUrl": "https://sandbox-api-shipx-pl.easypack24.net"
},
"DPD": {
"BaseUrl": "https://dpdservicesdemo.dpd.com.pl",
"ApiKey": "dGVzdDp0aGV0dTRFZQ==",
"GenerationPolicy": "STOP_ON_FIRST_ERROR",
"LanguageCode": "PL",
"OutputDocFormat": "PDF",
"Format": "A4",
"OutputType": "BIC3",
"Variant": "Standard",
"OrganizationFID": 1495,
"Content": "Goods"
},
"Mail": {
"Email": "",
"Password": "",
"SmtpHost": "smtp.gmail.com",
"SmtpPort": 587
},
"Company": {
"Name": "",
"Address": "",
"Contry": "",
"City": "",
"PostCode": ""
},
"Serilog": {
"Using": [
"Serilog.Sinks.Console",
"Serilog.Expressions",
"Serilog.Sinks.Seq"
],
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"System": "Warning"
}
},
"WriteTo": [
{
"Name": "Seq",
"Args": {
"serverUrl": "http://localhost:5341"
}
}
]
},
"Admin": {
"Id": "5ad81f28-0be1-4c38-a8b9-16cefab9203e",
"Email": "admin@admin.com",
"Password": "admin",
"Role": "Admin"
},
"AllowedHosts": "*"
}