Build Status Total Downloads Latest Stable Version License

About

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:

  1. Dev.to
  2. Medium

Setup

  1. Clone or download the repository

    git clone git@github.com:Mupati/laravel-8-vue-auth-starter.git
    
  2. Create your .env file.

    cd laravel-8-vue-auth-starter
    cp .env.example .env
    
  3. Update the .env file with your database various credentials

  4. Install the necessary packages.

    composer install && npm install
    
  5. Generate the app key

    php artisan key:generate
    
  6. Run the migrations

    php artisan migrate
    
  7. Start frontend server

    npm run watch
    
  8. Start the backend development server

    php artisan serve
    
  9. 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.