18 lines
489 B
Plaintext
18 lines
489 B
Plaintext
# Variables de Entorno para Prueba de Producción Local
|
|
|
|
# Database
|
|
POSTGRES_DB=checklist_db
|
|
POSTGRES_USER=checklist_user
|
|
POSTGRES_PASSWORD=checklist_pass_2024_prod
|
|
|
|
# Backend
|
|
SECRET_KEY=production-secret-key-super-segura-minimo-32-caracteres-123456
|
|
OPENAI_API_KEY=
|
|
ENVIRONMENT=production
|
|
|
|
# CORS - Para prueba local
|
|
ALLOWED_ORIGINS=http://localhost,http://localhost:80,http://127.0.0.1
|
|
|
|
# Frontend - Para prueba local (apunta al backend en puerto 8000)
|
|
VITE_API_URL=http://localhost:8000
|