first commit

This commit is contained in:
2025-03-06 12:21:17 -06:00
commit b2f9df541d
78 changed files with 15007 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<?php
// Colores ANSI
$blue = "\033[44m";
$red = "\033[41m";
$yellow = "\033[93m";
$reset = "\033[0m";
echo PHP_EOL;
echo "La instalación inicial está completa." . PHP_EOL . PHP_EOL;
echo "{$red}⚠️ IMPORTANTE:{$reset} Debes configurar la base de datos en .env antes de continuar." . PHP_EOL . PHP_EOL;
echo "Para inicializar la base de datos, ejecuta:" . PHP_EOL;
echo " {$yellow}php -d memory_limit=1G artisan migrate:fresh --seed{$reset}" . PHP_EOL . PHP_EOL;