How to stop Laravel’s Valet asking for password

Learn how to prevent Laravel’s Valet from asking for a password every time you use it.

If there is one aspect of Laravel that I like, it’s that it is accompanied by very nice tools.
Depending on how you like to develop you can even choose between different approaches and tools to develop with Laravel.

Valet is one of those tools. If you — like me — like to quickly setup your development environment, and test your work in progress asap, Valet helps you to setup test domains on your local machine very fast.

As Valet’s documentation explains:

Valet is a Laravel development environment for macOS minimalists. Laravel Valet configures your Mac to always run Nginx in the background when your machine starts. Then, using DnsMasq, Valet proxies all requests on the *.testdomain to point to sites installed on your local machine.

How to prevent Valet from asking your password?

The answer is quite simple: you need Valet to trust your computer.
As you can find on the documentation page for Valet, the solution is revealed in the “other commands” section:

As the command states:

Add sudoers files for Brew and Valet to allow Valet commands to be run without prompting for your password.

Whereas the sudo command allows non-root users to run commands that would normally require superuser privileges, the sudoers file instructs the system how to handle the sudo command (source: hostinger.com).

So, by using the “valet trust” command, you will indicate that the current machine can be trusted, which results in sudoers adjustments that will give Valet sudo permissions to operate correctly and without asking for your password each and every time.

To conclude

Please understand that the reason that you were prompted for the password in the first place, is because of increased security measures.

The security impact for using sudoers to give Valet sudo rights has also been discussed by the community on this Github thread concerning the issue.

Although using the trust command makes it easier to use valet without having to enter your password every time, always think about your machine setup, its connectivity to the internet and how this might affect your security at a realistic level.

Me personally, I’m happy to trust my device and am using Valet with a big smile once more.

Code Hard, Ship Harder ?

This article was also published on Dev.To