-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.production
More file actions
37 lines (29 loc) · 917 Bytes
/
.env.production
File metadata and controls
37 lines (29 loc) · 917 Bytes
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
31
32
33
34
35
36
37
# Configuração para Produção - Lucy Bot
# ===== ESSENCIAL - Bot Discord =====
DISCORD_TOKEN=seu_token_aqui
CLIENT_ID=seu_client_id_aqui
GUILD_ID=seu_guild_id_aqui
# ===== ESSENCIAL - Banco de Dados =====
# Use uma senha FORTE em produção!
POSTGRES_DB=lucydb
POSTGRES_USER=lucy
POSTGRES_PASSWORD=sua_senha_forte_aqui
DATABASE_URL=postgresql://lucy:sua_senha_forte_aqui@postgres:5432/lucydb
DATABASE_DIRECT_URL=postgresql://lucy:sua_senha_forte_aqui@postgres:5432/lucydb
# ===== AMBIENTE =====
NODE_ENV=production
LOG_LEVEL=info
# ===== BOT CONFIGURAÇÕES =====
PREFIX=l~
# ===== PAINEL ADMINISTRATIVO =====
ENABLE_ADMIN_PANEL=true
API_PORT=3050
# ===== OPCIONAIS - Paths para Produção =====
POSTGRES_DATA_PATH=./data/postgres
# ===== RECURSOS - Opcional =====
# Descomente para limitar recursos
# MAX_MEMORY=1G
# MAX_CPU=1.0
# ===== LOGS - Opcional =====
# LOG_FILE=./logs/lucy.log
# LOG_ROTATION=true