- Create a new Laravel 10.x project
composer create-project laravel/laravel **your_project_name** - Install the needed package
composer require laravel/ui - Apply the new auth scaffolding using bootstrap and laravel/ui:
php artisan ui bootstrap --auth - Run
npm iand - Configure correctly the
.envfile - Run
php artisan migrate - 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!
- 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!
