composer install
npm install
cp .env.example .env
php artisan key:generate
Create a mysql database called "code-challenge". Update .env file with username / password.
DB_DATABASE=code-challenge
DB_USERNAME=root
DB_PASSWORD=
Run migrations.
php artisan migrate
php artisan serve
npm run dev
php artisan queue:work
http://localhost:8000