A starter kit of Laravel 8 with the Vuejs Authentication that was available in previous versions. I created this to help users to follow some technical articles I've written on:
-
Clone or download the repository
git clone git@github.com:Mupati/laravel-8-vue-auth-starter.git
-
Create your
.env
file.cd laravel-8-vue-auth-starter cp .env.example .env
-
Update the
.env
file with your database various credentials -
Install the necessary packages.
composer install && npm install
-
Generate the app key
php artisan key:generate
-
Run the migrations
php artisan migrate
-
Start frontend server
npm run watch
-
Start the backend development server
php artisan serve
-
Visit the url printed out on the terminal in your browser. Most likely it will be http://127.0.0.1:8000.
Continue your journey of building the NEXT BIG THING.