Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 709 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 709 Bytes

vue-starter Backend API (Laravel-based)

This application will serve as the companion app to another project called vue-starter. It is meant to be a small demo of a Laravel API, using Dingo and JWT for authentication.

vue-starter Frontend App

Installation

Step 1: Clone the repo

git clone https://github.com/layer7be/vue-starter-laravel-api

Step 2: Prerequisites

composer install
touch database/database.sqlite
php artisan migrate
php artisan db:seed
php artisan key:generate
php artisan vendor:publish --provider="Tymon\JWTAuth\Providers\LaravelServiceProvider"
php artisan jwt:generate

Step 3: Serve

php artisan serve