Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pktharindu/nuxt-laravel-passport-example

Nuxt.js app as a first-party client powered by Laravel Passport API
https://github.com/pktharindu/nuxt-laravel-passport-example

api authentication client hacktoberfest laravel laravel-passport laravel-ui nuxt nuxtjs passport password-grant

Last synced: 17 days ago
JSON representation

Nuxt.js app as a first-party client powered by Laravel Passport API

Awesome Lists containing this project

README

        


Nuxt & Laravel Passport Example cover

> This example implements Nuxt app as a first-party client and Laravel Passport as the backend API. It supports Passport-password grant out of the box which allows your other first-party clients, such as a mobile application, to obtain an access token using an e-mail address and password. But feel free to use other grant types in _laravel/passport_ by extending this.

## Installation

Clone the repository

git clone https://github.com/pktharindu/nuxt-laravel-passport-example.git

Switch to the laravel folder first

cd nuxt-laravel-passport-example/laravel

Install all the dependencies using composer

composer install

Copy the example env file and make the required configuration changes in the .env file

cp .env.example .env

Generate a new application key

php artisan key:generate

Run the database migrations (**Set the database connection in .env before migrating**)

php artisan migrate

Install passport

php artisan passport:install

Start the local development server

php artisan serve

You can now access the server at http://localhost:8000

Switch to the nuxt folder next

cd ../nuxt/

Install all the dependencies using npm

npm install

Copy the example env file and populate it with values from laravel

cp .env.example .env

You can get `PASSPORT_PASSWORD_GRANT_ID` and `PASSPORT_PASSWORD_GRANT_SECRET` with `php artisan passport:client --password`.

serve with hot reload at localhost:3000

yarn run dev