Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 820 Bytes

readme.md

File metadata and controls

37 lines (31 loc) · 820 Bytes

Shopping list with VUE & Laravel

Basic Laravel 5.6 + VUE 2.5 with axios CRUD application.

It uses Laravel for API and Vue for front-end.

Demo

Vue + Laravel CRUD app

Installation

  • Clone repository
git clone https://github.com/simple-webdev/shopping-list.git
  • Copy .env.example file to .env and edit .env to configure your database
cd shopping-list
cp .env.example .env
  • Install libraries and dependencies
composer install --no-scripts
  • Generate application key, migrate and seed database
php artisan key:generate
php artisan migrate
php artisan db:seed
  • Install npm packages & watch for changes
npm install
npm run watch
  • Serve application. You may use Valet, Homestead or just php artisan serve