Initial commit - estructura completa del proyecto
This commit is contained in:
24
start.sh
Executable file
24
start.sh
Executable 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"
|
||||
Reference in New Issue
Block a user