0.0.1 - test

This commit is contained in:
2024-03-17 00:54:52 +01:00
parent adeff63540
commit 8eabc0a49d
8 changed files with 1095 additions and 0 deletions

14
config/config.example.js Normal file
View File

@@ -0,0 +1,14 @@
export default class Config{
static webhook_url = "";
static booru_url = "";
static booru_token = "";
// strange behavior of discord-webhooks-node if there are to much tags or actually if it is too long
// as I was locating the problem it seems not directly the module but something with the form request
// wanted to fork the discord-webhooks-node project of github, but this seems for the current state
// for to much effort for such a tiny purpose.
//
// so I'm keeping the show Tags setting on false
static showTags = false;
}

7
config/config.js Normal file
View File

@@ -0,0 +1,7 @@
export default class Config{
static webhook_url = "https://discord.com/api/webhooks/1217619594034806795/T2xoxT7AI_63GgxPj4rbzw4Xilo5SRFMySl8O0TwKqoMsQb9TbeR_57pfp_hkllv60WD";
static booru_url = "http://booru.apps.aussieshep.int";
static booru_token = "cmVkZGl0OjU2MWJiNTM5LWI0OTMtNDEzZi05Y2RkLWJhZDQzNzRlNGQzMg==";
// strange behavior of discord-webhooks-node if there are to much tags
static showTags = true;
}