11 December 2024

Exclude Windows PATHs in WSL PATH

In WSL, add the below to /etc/wsl.conf
[interop]
appendWindowsPath = false
You'll need to restart WSL after updating the above. From cmd, run
wsl --shutdown

02 December 2024

Linus Alias or Shortcut using Bash Function

Open ~/.bashrc and add the below function.
artisan() {
docker-compose exec php artisan "$@"
}
Reload the shell configuration.
source ~/.bashrc
Use the alias or shortcut.
artisan make