summaryrefslogtreecommitdiffstats
path: root/src/config.ts
blob: f771bedc4ddc93b28b07c8a8e99e382052b8450b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const mainQuery = {
    tags: [
        "feral",
        "-anthro",
        "-human",
        "-meme",
        "-humor",
        "-photography_(artwork)",
        "-portrait",
        "-comic",
        "-saliva",
        "-friendship_is_magic",
        "-my_little_pony",
        "-type:swf",
        "-type:webm",
        "-type:gif",
        "status:active",
        "score:>=15",
        "inpool:false",
    ],
    maxPage: 195,
};

export default {
    e621: {
        userAgent: "@feralbot@botsin.space (by RedFoxxo)",
        queries: [
            mainQuery,
        ],
    },
    /*misskey: {
        instance: "https://mk.vulpes.one/",
        token: process.env.MISSKEY_TOKEN,
    },*/
    mastodon: {
        instance: "https://botsin.space/",
        token: process.env.MASTODON_TOKEN,
    },
    cw: ["gun"],
};