Change: kubectl and service image
Some checks failed
Build image and deploy / release-image (push) Successful in 1m52s
Build image and deploy / deploy (push) Failing after 47s

This commit is contained in:
2024-10-18 16:24:02 +00:00
parent 8464b1e2a8
commit f98b81d3b3
9 changed files with 76 additions and 102 deletions

View File

@@ -3,20 +3,20 @@ import dotenv from 'dotenv';
dotenv.config();
export const config = {
// Token and client id can be found in Discord Developer Protol.
// Token and client id can be found in Discord Developer Protol.
token: process.env.DC_TOKEN!,
clientId: process.env.DC_CLIENTID!,
// The user that the bot will DM when starts.
// The user that the bot will DM when starts.
adminId: process.env.ADMIN_ID ?? '',
nickname: '橘ありす',
playing: 'アイドルマスター シンデレラガールズ U149',
nickname: '橘ありす',
playing: 'アイドルマスター シンデレラガールズ U149',
logger: {
logFile: 'test.log',
},
// The default role id to apply when new member join.
// Can be obtained in Discord from right clicking the role.
defaultRole: process.env.DEFAULT_ROLE ?? '',
// The default role id to apply when new member join.
// Can be obtained in Discord from right clicking the role.
defaultRole: process.env.DEFAULT_ROLE ?? '',
};