- Creiamo un nuovo progetto
composer create-project laravel/laravel:^10 your-project-name* - Installiamo il pacchetto necessario
composer require laravel/ui - Applichiamo lo scaffolding necessario di laravel/ui:
php artisan ui bootstrap --auth - Eseguiamo
npm ie - Configuriamo con i nostri dati il
.env - Eseguiamo
php artisan migrate - Eseguiamo su due terminali paralleli:
npm run devphp artisan serve
- Divertitevi!
- Copy and paste the
.env.examplefile and rename it into.envwithout removing theenv.examplefile - Run
composer installto install all our composer packages - Run
php artisan key:generateto generate our custom application key - Run
npm ito install all our npm packages - Run on two separeted terminals:
- run
npm run devto build iteratively our front-end packages and code - run
php artisan serveto build iteratively our back-end packages and code
- run
- Start changing the world with your oustanding code!
