This is the API backend for a pet shop ecommerce platform.
This project is developed with the Laravel 10.x PHP framework.
When you clone this repo for the first time, you should...
- Add your
.env
file in project root, typically using the.env.example
file.
- To run the application, simply run the
php artisan serve
command. - You should then be able to access the application via
http://localhost:8000
orhttp://127.0.0.1:8000
If you use Laravel Valet, you should be able to access the application immediately after cloning it to your sites directory. E.g.
http://petshop-api.test
The API has been documented using swagger (OpenAPI) here.
- To run the tests, simply run the
php artisan test
command. - All Good!