forked from tsoernes/leechflix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
22 lines (18 loc) · 807 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
var config = {};
config.credentials = {
username: "enter username here",
password: "enter password here",
remember_me: "on"
};
config.urls = {
login: "https://torrentleech.org/user/account/login/",
searchBeg: "https://torrentleech.org/torrents/browse/index/query/",
searchEnd: "/categories/13%2C14/facets/tags%253Anonscene",
moviesNew: "https://torrentleech.org/torrents/browse/index/categories/13%2C14/facets/tags%253Anonscene/page/1",
moviesPopBeg: "https://www.torrentleech.org/torrents/browse/index/categories/13%2C14/facets/tags%253Anonscene_added%253A%255BNOW%252FMINUTE-",
moviesPopEnd: "%2BTO%2BNOW%252FMINUTE%252B1MINUTE%255D/orderby/completed/order/desc/page/1"
}
// /page/1, /page/2 etc
config.torrentDir = "./torrents/";
config.cookiePath = "cookies.json";
module.exports = config;