The coding challenge implements the 2 required features:
- Ability to create a product (from web and cli)
- A listing products with ability to sort by price, filter by a category (from web)
- Clone the project with
git clone
- Copy
.env.example
file to.env
and edit database credentials there - Run
composer install
- Run
php artisan key:generate
- Run
php artisan migrate --seed
(it has sample testing data) - Run
php artisan storage:link
- Run
npm install && npm run dev
- Launch the main URL to use the web version
- Launch
php artisan products:create
to use the cli version
That's it. Thank you for taking the time to review my coding challenge