- Copy .env.example -> .env
- update db creds
- run
composer install
- run
npm install
- run
php artisan migrate
- run
php artisan app:create-user
Assuming you have either setup a vhost, docker setup or just plan to run it through php artisan serve
you should be largely good to go...
vendor/bin/phplint ./ --exclude=vendor
https://www.php-fig.org/psr/psr-12/
vendor/bin/phpcs ./app
If the CS Checker comes back with errors that it can automaticlly fix, run
vendor/bin/phpcbf ./app
and it should fix them.