-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
58 lines (58 loc) · 1.57 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
{
"Ucommerce": {
"DataImport": {
"ConnectionString": "Server=localhost,61432;Database=Ucommerce;User ID=sa;Password=H3mm3ligT;TrustServerCertificate=True;MultipleActiveResultSets=False;Encrypt=false;"
}
},
"UcommerceCsvImporter": {
"GeneralSettings": {
"Directory": "CsvFiles",
"Delimiter": ",",
"Encoding": "utf-8",
"TrimFields": true,
"HasHeaderRecord": true
},
"CategoryDataSettings": {
"FileName": "Categories.csv",
"DeletedIndex": 0,
"NameIndex": 1,
"DescriptionIndex": 2,
"ParentCategoryIdIndex": 3
},
"CurrencyDataSettings": {
"FileName": "Currencies.csv",
"ExternalIdentifierIndex": 0,
"IsoCodeIndex": 1,
"DeletedIndex": 2
},
"PriceDataSettings": {
"FileName": "Prices.csv",
"AmountIndex": 0,
"MinimumQuantityIndex": 1,
"ExternalIdentifierIndex": 2,
"PriceGroupIdentifierIndex": 3,
"ProductIdentifierIndex": 4
},
"PriceGroupDataSettings": {
"FileName": "PriceGroups.csv",
"ExternalIdentifierIndex": 0,
"NameIndex": 1,
"TaxRateIndex": 2,
"DescriptionIndex": 3,
"DeletedIndex": 4,
"CurrencyIdentifierIndex": 5,
"BasePriceGroupIdentifierIndex": 6
},
"ProductDataSettings": {
"FileName": "Products.csv",
"ExternalIdentifierIndex": 0,
"ParentProductIdentifierIndex": 1,
"DefinitionIdIndex": 2,
"DisplayOnSiteIndex": 3,
"NameIndex": 4,
"PrimaryImageMediaIdIndex": 5,
"SkuIndex": 6,
"VariantSkuIndex": 7
}
}
}