Moved generics into separate folder

crawler
Edward Peterson 3 years ago
parent 08ecb6545b
commit 797ab657d8

@ -1,7 +1,7 @@
//sample url = https://BarrettJacksonCDN.azureedge.net/staging/carlist/items/Fullsize/Cars/263634/263634_Rear_3-4_Web.jpg //sample url = https://BarrettJacksonCDN.azureedge.net/staging/carlist/items/Fullsize/Cars/263634/263634_Rear_3-4_Web.jpg
//sample urlt= https://BarrettJacksonCDN.azureedge.net/staging/carlist/items/Thumbnails/Cars/263634/263634_Misc_6ca0ca58-2b21-482d-ba01-4078083b5520_T.jpg //sample urlt= https://BarrettJacksonCDN.azureedge.net/staging/carlist/items/Thumbnails/Cars/263634/263634_Misc_6ca0ca58-2b21-482d-ba01-4078083b5520_T.jpg
const genericVinParserFactory = require("./generic-vin-parser"); const genericVinParserFactory = require("./generics/generic-vin-parser");
module.exports = { module.exports = {
baseUrl: 'www.barrett-jackson.com', baseUrl: 'www.barrett-jackson.com',

@ -1,5 +1,5 @@
const genericBootstrapFactory = require("./generic-bootstrap"); const genericBootstrapFactory = require("./generics/generic-bootstrap");
const genericVinParserFactory = require("./generic-vin-parser"); const genericVinParserFactory = require("./generics/generic-vin-parser");
const _ = require('lodash') const _ = require('lodash')
module.exports = { module.exports = {
execute: genericBootstrapFactory({ execute: genericBootstrapFactory({

@ -1,5 +1,5 @@
const genericBootstrapFactory = require("./generic-bootstrap"); const genericBootstrapFactory = require("./generics/generic-bootstrap");
const genericVinParserFactory = require("./generic-vin-parser"); const genericVinParserFactory = require("./generics/generic-vin-parser");
const _ = require('lodash'); const _ = require('lodash');

@ -1,5 +1,5 @@
const _ = require('lodash'); const _ = require('lodash');
const genericVinParserFactory = require("./generic-vin-parser"); const genericVinParserFactory = require("./generics/generic-vin-parser");
module.exports = { module.exports = {
baseUrl: 'davidsclassiccars.com', baseUrl: 'davidsclassiccars.com',

@ -1,5 +1,5 @@
const genericVinParserFactory = require("./generic-vin-parser"); const genericVinParserFactory = require("./generics/generic-vin-parser");
module.exports = { module.exports = {
baseUrl: 'ebay.com', baseUrl: 'ebay.com',
execute: async function (page) { execute: async function (page) {

@ -1,5 +1,5 @@
const genericBootstrapFactory = require("./generic-bootstrap"); const genericBootstrapFactory = require("./generics/generic-bootstrap");
const genericVinParserFactory = require("./generic-vin-parser"); const genericVinParserFactory = require("./generics/generic-vin-parser");
module.exports = { module.exports = {

@ -1,4 +1,4 @@
const genericVinParserFactory = require("./generic-vin-parser"); const genericVinParserFactory = require("./generics/generic-vin-parser");
module.exports = { module.exports = {
baseUrl: 'survivor-cars.com', baseUrl: 'survivor-cars.com',
async execute(page) { async execute(page) {

@ -1,4 +1,4 @@
const genericVinParserFactory = require("./generic-vin-parser"); const genericVinParserFactory = require("./generics/generic-vin-parser");
module.exports = { module.exports = {
baseUrl: 'topclassiccarsforsale.com', baseUrl: 'topclassiccarsforsale.com',
async execute(page) { async execute(page) {

Loading…
Cancel
Save