22 lines
479 B
Plaintext
22 lines
479 B
Plaintext
# Google Gemini API Key
|
|
GOOGLE_API_KEY="*****"
|
|
|
|
# Base de Datos (PostgreSQL)
|
|
DATABASE_URL=postgresql://postgres:******@localhost:5432/postgres
|
|
|
|
DB_USER=postgres
|
|
DB_PASSWORD=*****
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=postgres
|
|
|
|
# Configuración de Correo (Gmail)
|
|
SMTP_HOST=smtp.gmail.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=*****@gmail.com
|
|
SMTP_PASSWORD=**** **** **** ****
|
|
EMAILS_FROM_NAME="Sistema SumaQ"
|
|
EMAILS_FROM_EMAIL=*****@gmail.com
|
|
|
|
# Frontend URL
|
|
FRONTEND_URL=http://localhost:4200 |