working on code breakup
Build and Push Image / build-and-push (push) Failing after 21s

This commit is contained in:
2026-05-02 23:29:32 -07:00
parent 749fe95903
commit b39fc6e7db
6 changed files with 103 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
const path = require('path');
const config = {
baseUrl: 'https://koillection.nelson-household.com/api',
apiEndpoint: '/api/collections' , // Replace with your API endpoint
imageDownloadDirectory: path.join(__dirname, 'master-set-images/perfect-order'), // Local directory for downloaded images
maxConcurrentDownloads: 5, // Limit concurrent downloads
dataValidationRules: {
collectionName: /^[a-zA-Z0-9_]+$/, // Regular expression for collection name
itemName: /^[a-zA-Z0-9_ ]+$/ // Regular expression for item name
},
collectionsMapping: {
'Perfect Order': './csv/ME03PerfectOrderProductsAndPrices.csv',
}
// Add more configuration settings here (e.g., image server URL, etc.)
};
export default config;