Clone the project
git clone <project_url>
Go to the project directory
cd <proejct>
Copy env.example and set it up (DB_DATABASE, DB_USERNAME, DB_PASSWORD)
cp .env.example .env
Install dependencies
composer install
Install npm packages and build project
npm install && npm run build
Generate keys
php artisan key:generate
Generate storage symlink
php artisan storage:link
Run migrations and seeders
php artisan migrate --seed
Run server
php artisan serve