-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
84 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Bot Websites | ||
topGGToken="" # https://top.gg/ Access Token | ||
DBToken="" # https://discord.bots.gg/ Access Token | ||
DBListToken="" # https://discordbotlist.com Access Token | ||
|
||
# Internals | ||
postgresToken="" # PostgreSQL DataBase Token | ||
useRedis="" # Whether to use Redis or not (true/false) | ||
redisToken="" # Redis DataBase Token | ||
socketToken="" # WebSocket Token | ||
DATABASE_URL="" # DataBase Connection String | ||
Token="" # Bot Token | ||
|
||
# Client | ||
ownerID="" # Bot Owner ID | ||
clientID="" # Bot Client ID | ||
mainID="" # Bot Main Client ID (Several functions are disabled if this is not the main client) | ||
secret="" # Bot Secret | ||
|
||
# Webhooks | ||
guildActionWebhookID="" # Guild Action Webhook ID (Bot is added and removed from Guilds) | ||
dmWebhookID="" # DM Webhook ID (Bot receives DMs) | ||
|
||
guildActionWebhookToken="" # Guild Action Webhook Token (Bot is added and removed from Guilds) | ||
dmWebhookToken="" # DM Webhook ID (Bot receives DMs) | ||
|
||
# Anti-Virus | ||
promptAPIToken="" # https://apilayer.com/ Access Token | ||
VTToken="" # https://virustotal.com/ Access Token | ||
ip2whoisToken="" # https://ip2whois.com/ Access Token | ||
spamhausToken="" # https://spamhaus.org/ Access Token | ||
kasperskyToken="" # https://kaspersky.com/ Access Token | ||
safeBrowsingToken="" # https://developers.google.com/safe-browsing/ Access Token | ||
fishToken="" # https://fishfish.gg/ Access Token | ||
phishToken="" # https://api.fishfish.gg/docs/ Access Token |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
import io from 'socket.io-client'; | ||
import auth from '../auth.json' assert { type: 'json' }; | ||
|
||
export default io('https://api.ayakobot.com', { | ||
transports: ['websocket'], | ||
auth: { | ||
reason: 'botClient', | ||
code: auth.socketToken, | ||
code: process.env.socketToken ?? '', | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.