Set up with
composer install
npm install
php artisan storage:link
Migrate or create Elastic indexes with
php artisan regarch:elastic:migrate
Start with
npm run dev
php artisan serve
Test with
php artisan test --env=testing
If you're developing on Windows, you will get an error at composer install
stage about pcntl extension missing (required by Horizon). As of today, this extension is not available for Windows, so you'll have to do
composer install --ignore-platform-reqs