Files

25 lines
646 B
JavaScript
Raw Permalink Normal View History

2017-12-07 12:36:41 +01:00
var config = {};
2017-12-08 13:43:47 +01:00
2017-12-07 12:36:41 +01:00
config.domainList = [
'https://www.iis.se/data/bardate_domains_nu.txt',
'https://www.iis.se/data/bardate_domains.txt'];
2017-12-08 10:57:47 +01:00
//config.domainList = ['/home/bilal/Saburly/domene-svedska/crawler/bardate_domains_11_12.txt'];
config.seDomainCheck = 'http://free.iis.se/free?q=';
config.nuDomainCheck = 'http://free.iis.nu/free?q=';
2017-12-08 10:57:47 +01:00
2017-12-07 12:36:41 +01:00
config.wordList = __dirname + '/words.txt';
config.lettersOnlyRegex = /^[A-Za-z]+$/;
2017-12-08 10:57:47 +01:00
config.swedishLettersOnly = /^[A-Za-zÅåÄäÖöüÜáÁèÈàÀéÉëËíÍÆæøØçÇ]+$/;
2017-12-07 12:36:41 +01:00
2017-12-08 13:43:47 +01:00
config.databaseURL = 'mongodb://localhost:27017/domains';
2017-12-07 12:36:41 +01:00
//====
config.words = [];
module.exports = config;