- instalar laravel a nivel global composer global require "laravel/installer"
- en htdocs crear nuestro proyecto laravel new mymvc
- Directories within the storage and the bootstrap/cache directories should be writable by your web server or Laravel will not run.
- generar el application key php artisan key:generate
- renombrar el archivo .env.example por .env
- en el archivo .env setear los valores de la conexion a BD
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=mymvcdatabase
DB_USERNAME=root
DB_PASSWORD=''
- limpiar la cache de configuracion php artisan config:clear
- para evitar el error Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes ir al archivo AppServiceProvider.php y
public function boot()
{
Schema::defaultStringLength(191);
}
agregar tambien use Illuminate\Support\Facades\Schema;
agregar tambien use Illuminate\Support\Facades\Schema;
No hay comentarios:
Publicar un comentario