A RESTful Laravel development challenge for managing a small coffee shop.
Clone the repository and switch to the repo folder.
git clone https://github.com/sadegh19b/RockStarCoffeeShopApi
Install the php dependencies and after that, you need to create the database to run the migrations and configure the .env
file.
composer install
cp .env.example .env
php artisan key:generate
php artisan migrate --seed
php artisan serve
Run the project tests by following the command below:
php artisan test
For run and test api's, you can use the postman application and import the RockStar_Coffee_Shop.postman_collection.json
file in the postman.