# Configuración del Servidor
PORT=3000
NODE_ENV=development

# Configuración de la Base de Datos MySQL REMOTA
DB_HOST=51.222.104.23
DB_PORT=3306
DB_USER=barcoded_root
DB_PASSWORD=B74416269m.21
DB_NAME=barcoded_restaurant
DB_CONNECTION_LIMIT=20

# JWT
JWT_SECRET=mi_clave_secreta_jwt_super_segura_2024_restaurante
JWT_EXPIRES_IN=24h
JWT_REFRESH_SECRET=mi_clave_refresh_token_super_segura_2024_restaurante
JWT_REFRESH_EXPIRES_IN=7d

# CORS
ALLOWED_ORIGINS=http://localhost:3000,http://localhost:4200,http://localhost:5173,http://localhost:8080

# Rate Limiting
RATE_LIMIT_WINDOW_MS=900000
RATE_LIMIT_MAX_REQUESTS=100

# Bcrypt
BCRYPT_SALT_ROUNDS=10

# Logs
LOG_LEVEL=info