Skip to content

Instantly share code, notes, and snippets.

View aspsptyd's full-sized avatar
📫
Potiusque sero quam nunquam [Liv. 4 2 11]

Asep Septiadi aspsptyd

📫
Potiusque sero quam nunquam [Liv. 4 2 11]
View GitHub Profile
@bradtraversy
bradtraversy / laravel_valet_setup.md
Last active February 4, 2025 05:08
Laravel Valet install on mac

Laravel Valet Setup (Mac)

This will get you setup with Laravel & Valet on your Mac. Quentin Watt has a good video tutorial on getting setup here as well

Install Homebrew

Go to https://brew.sh/ and copy the command and run in your terminal

It will be something like this...

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
1.Run git clone <my-cool-project>
2.Run composer install
3.Run cp .env.example .env
4.Run php artisan key:generate
5.Run php artisan migrate
6.Run php artisan serve
7.Go to link localhost:8000