A quick, simple template to get up and running with authentication using Laravel Lumen and Nuxt JS
- Clone this repo.
- Run the following:
# prepare the project
$ sudo ./prepare-demo.sh
- When prompted, add your App Key & setup your database credentials for the API!
- Setup an empty database for your API and configure database credentials inside of the API
.env
file. - Run the following from our API:
# generate tables
$ cd api && php artisan migrate
You'll need two terminals open:
🚀 API - Terminal #1
cd api && php -S localhost:8000 -t public
🚀 Client - Terminal #2
cd client && npm run start