This commit is contained in:
2024-12-27 01:23:35 +01:00
parent 7d349a37d4
commit c06ac10d09
18 changed files with 543 additions and 0 deletions

12
src/config.ts Normal file
View File

@@ -0,0 +1,12 @@
const test = true;
export default {
discord: {
channelId:
(test
? process.env.DISCORD_TEST_CHANNEL_ID
: process.env.DISCORD_CHANNEL_ID) || "",
applicationId: process.env.DISCORD_APPLICATION_ID || "",
token: process.env.DISCORD_TOKEN || "",
},
};