👌 Skeleton SPA for Laravel 5.4 and Vue2
- Run
composer install
andnpm install
- Configure
.env
file. Make sure APP_URL points to correct url. - Make sure
APP_ENV
andMIX_APP_ENV
are the same as well asAPP_URL
andAPP_MIX_URL
. - Generate app key,
php artisan key:generate
. - Run Migrations and seeders,
php artisan migrate
&php artisan db:seed
. - Build js files
npm run watch
(for auto compile) ornpm run dev
/npm run prod
.