Files
old-web/app/crawler/crawlerConfig.js

15 lines
400 B
JavaScript
Raw Normal View History

2019-09-18 15:32:48 +02:00
"use strict";
require("dotenv").config({ path: __dirname + "/./../../.env" });
2019-09-18 15:32:48 +02:00
const OLX_CONFIG = require("./specificConfigs/olx");
const RENTAL_CONFIG = require("./specificConfigs/rental");
2019-10-24 17:11:12 +02:00
const PROSTOR_CONFIG = require("./specificConfigs/prostor");
const AKTIDO_CONFIG = require("./specificConfigs/aktido");
2019-09-18 15:32:48 +02:00
module.exports = {
OLX_CONFIG,
2019-10-24 17:11:12 +02:00
RENTAL_CONFIG,
PROSTOR_CONFIG,
AKTIDO_CONFIG
2019-09-18 15:32:48 +02:00
};