ORdenar archivos de PRod

This commit is contained in:
2025-11-18 17:35:32 -03:00
parent 443de4ec0e
commit bc4721737c
7 changed files with 427 additions and 2 deletions

17
.env.prod.local Normal file
View File

@@ -0,0 +1,17 @@
# 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