bigly-caret/index.js
2025-02-03 06:42:01 -05:00

21 lines
No EOL
536 B
JavaScript

import { main } from "./site.js";
let {
site = 'darflen',
route = './test.txt',
pageLimit = 0.1,
blackList = '',
greyList = '',
discardThreshold = 1,
delay = 100,
depth = 1,
isRelative = false,
fetchRate = 15,
user = 'paradock',
matrixIterations = 3,
useArchive = true,
isGpu = false
} = process.env;
let settings = { site, route, pageLimit, blackList, greyList, discardThreshold, delay, depth, isRelative, fetchRate, user, matrixIterations, useArchive, isGpu };
main(settings);