Laravel 5.8 Restful API boiler plate with auth, crud and json responses.
- Clone repository and setup.
git clone git@github.com:nicp0nim/rest-api.git
cd rest-api
cp .env.example .env
- Install needed packages.
composer install
- Migrate, install passport and seed database with fake data.
php artisan migrate:fresh --seed
php artisan passport:install
- Start docker.
docker-compose up -d