Templatized cross-seed configuration (config.js)

This commit is contained in:
Mike Wilson
2023-02-22 13:25:15 -05:00
parent 2d027f5ade
commit f4bc174d87
3 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
module.exports = {
delay: 10,
torznab: [
"http://prowlarr.local.{{ personal_domain }}/1/api?apikey={{ prowlarr_api_key }}", // TorrentLeech
"http://prowlarr.local.{{ personal_domain }}/2/api?apikey={{ prowlarr_api_key }}", // DigitalCore
"http://prowlarr.local.{{ personal_domain }}/3/api?apikey={{ prowlarr_api_key }}", // ImmortalSeed
"http://prowlarr.local.{{ personal_domain }}/4/api?apikey={{ prowlarr_api_key }}", // TorrentSeeds
"http://prowlarr.local.{{ personal_domain }}/5/api?apikey={{ prowlarr_api_key }}", // AnimeTosho
"http://prowlarr.local.{{ personal_domain }}/6/api?apikey={{ prowlarr_api_key }}", // Aither
],
torrentDir: "/torrents",
outputDir: "/cross-seeds",
includeEpisodes: false,
includeNonVideos: false,
fuzzySizeThreshold: 0.02,
excludeOlder: undefined,
excludeRecentSearch: undefined,
action: "inject",
rtorrentRpcUrl: undefined,
qbittorrentUrl: "https://qbittorrent.local.{{ personal_domain }}",
duplicateCategories: true,
notificationWebhookUrl: undefined,
port: 2468,
rssCadence: "2w",
searchCadence: "6w",
};