From 798c4e74b0dbd4eb9b6d3357ad3abceba2f0a8e5 Mon Sep 17 00:00:00 2001 From: Phillip Date: Sat, 21 Sep 2024 10:26:31 +0100 Subject: [PATCH] Restore code for installing web dev utilities and Python --- setup.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/setup.sh b/setup.sh index ff09104..1d43c02 100755 --- a/setup.sh +++ b/setup.sh @@ -114,5 +114,17 @@ cp com.apple.ncprefs.plist ~/Library/Preferences/com.apple.ncprefs.plist #Import mobileconfig open Fastmail.mobileconfig +# Install LTS version of Node and the second most recent version of Python +nvm install --lts +pyenv install 3.11 +pyenv global 3.11 + +# Install imagemagic module for PHP +pecl install imagick + +# Install Laravel Valet +composer global require laravel/valet +valet install + # Prompt user to reboot echo "Setup complete, please reboot." \ No newline at end of file