After unarchiving the ZIP file into the folder you prepared for your project, here's a sequence of Terminal commands you need to run (short version):
1
cp .env.example .env
2
vi .env
3
β
4
composer install
5
β
6
php artisan key:generate
7
β
8
php artisan migrate --seed
9
β
10
npm install
11
npm run dev
Copied!
We have a much more detailed guide for non-Vue Laravel version of QuickAdminPanel: Download Code and Install on Your Web-Server. Most of that guide is applicable for Vue version, but additionally, you need to run Vue-related commands: