17 lines
342 B
JavaScript
17 lines
342 B
JavaScript
var config = {};
|
|
|
|
config.domainList = [
|
|
'https://www.iis.se/data/bardate_domains_nu.txt',
|
|
'https://www.iis.se/data/bardate_domains.txt'];
|
|
|
|
config.wordList = __dirname + '/words.txt';
|
|
|
|
config.lettersOnlyRegex = /^[A-Za-z]+$/;
|
|
|
|
config.databaseURL = 'mongodb://localhost:27017/kivi';
|
|
|
|
|
|
//====
|
|
config.words = [];
|
|
|
|
module.exports = config; |