Compare commits

..

No commits in common. "4ce75dd629c95d8305e21061a678cb4a939ae9ad" and "903bb9b4c0edc4ab5f4874858e9468021aa75ded" have entirely different histories.

3 changed files with 14 additions and 9 deletions

View File

@ -12,11 +12,11 @@ services:
networks: networks:
- proxnet - proxnet
environment: environment:
TOPGG_WH_ID: "id" - TOPGG_WH_ID: "id"
TOPGG_WH_TOKEN: "token" - TOPGG_WH_TOKEN: "token"
UPTIMEKUMA_WH_ID: "id" - UPTIMEKUMA_WH_ID: "id"
UPTIMEKUMA_WH_TOKEN: "token" - UPTIMEKUMA_WH_TOKEN: "token"
TESTING_WH_ID: "id" - TESTING_WH_ID: "id"
TESTING_WH_TOKEN: "token" - TESTING_WH_TOKEN: "token"
volumes: volumes:
- ./logs:/logs # Log files - ./logs:/logs # Log files

View File

@ -38,6 +38,7 @@ module.exports = {
webhookClient.send({ webhookClient.send({
content: 'This is a test of the WebhookClient', content: 'This is a test of the WebhookClient',
username: config.discord.testing.username, username: config.discord.testing.username,
avatarURL: config.discord.testing.avatarURL,
embeds: [embed] embeds: [embed]
}); });
}, },
@ -56,6 +57,7 @@ module.exports = {
webhookClient.send({ webhookClient.send({
content: 'A user has voted for the bot on top.gg', content: 'A user has voted for the bot on top.gg',
username: config.discord.topgg.username, username: config.discord.topgg.username,
avatarURL: config.discord.topgg.avatarURL,
embeds: [embed] embeds: [embed]
}); });
} }

View File

@ -1,13 +1,16 @@
{ {
"discord": { "discord": {
"testing": { "testing": {
"username": "HookShot Test System" "username": "testing",
"avatarUrl": "https://assets.vfsh.dev/shednod.png"
}, },
"topgg": { "topgg": {
"username": "Silvanus votes on Top.gg" "username": "topgg",
"avatarUrl": "https://assets.vfsh.dev/shednod.png"
}, },
"uptimeKuma": { "uptimeKuma": {
"username": "Silvanus Uptime Monitor" "username": "uptimeKuma",
"avatarUrl": "https://assets.vfsh.dev/shednod.png"
} }
} }
} }