Initial commit - estructura completa del proyecto

This commit is contained in:
2025-12-26 21:43:42 -06:00
commit 9bfb78c650
44 changed files with 721 additions and 0 deletions

24
start.sh Executable file
View File

@@ -0,0 +1,24 @@
#!/bin/bash
echo "🚀 Iniciando pycore ..."
# Verificar Docker
if ! command -v docker &> /dev/null; then
echo "❌ Docker no está instalado"
exit 1
fi
# Construir y levantar
echo "📦 Construyendo contenedores..."
docker-compose up --build -d
echo "⏳ Esperando inicialización..."
sleep 15
echo "✅ Servicios iniciados:"
echo " 🌐 Frontend: http://localhost:3000"
echo " 🔧 Backend: http://localhost:8000"
echo " 📊 PgAdmin: http://localhost:5050"
echo " 🗄️ PostgreSQL: localhost:5432"
echo ""
echo "🔑 PgAdmin: admin@pycore.com / CyCoT256"