-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (24 loc) · 1.06 KB
/
.env.example
File metadata and controls
30 lines (24 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
ENV_TYPE=DEVELOPMENT
DATABASE_URL="postgresql://login:password@localhost:5432/nameDatabase"
JWT_SECRET="your-jwt-secret"
RIOT_API_KEY="your-riot-api-key"
ADMIN_NAME="NameOfAdmin"
ADMIN_EMAIL="emailOfAdmin@gmail.com"
ADMIN_PASSWORD="passwordOfAdmin"
ADMIN_DISCORD_ID="discordIdOfAdmin"
PORT="3333"
# Discord Bot (necord) - needed only when DiscordBotModule is enabled
TOKEN_BOT="your-discord-bot-token"
# DISCORD_GUILD_ID is optional: set it in development for instant slash command registration
# in a specific server. Leave unset in production so commands register globally (all servers).
# DISCORD_GUILD_ID="your-guild-id-for-dev-commands"
# Segredo compartilhado para autenticação do bot (deve ser igual ao BOT_SECRET do bot)
BOT_SECRET="a-long-random-secret-string"
# Discord OAuth2
DISCORD_CLIENT_ID="your-discord-client-id"
DISCORD_CLIENT_SECRET="your-discord-client-secret"
DISCORD_REDIRECT_URI="http://localhost:3333/auth/discord/callback"
WEB_URL="http://localhost:3000"
# Clash Scout — IA de bans
GEMINI_API_KEY="your-gemini-api-key"
GEMINI_MODEL="gemini-2.5-flash"