14 lines
473 B
PHP
14 lines
473 B
PHP
|
<?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;
|