Skip to content

Instantly share code, notes, and snippets.

@jhonoryza
Last active January 28, 2023 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhonoryza/60eea68fb6e848e44f8f09a497f65ee4 to your computer and use it in GitHub Desktop.
Save jhonoryza/60eea68fb6e848e44f8f09a497f65ee4 to your computer and use it in GitHub Desktop.
web dev setup

install brew

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

install php

brew install php@8.2 \
&& php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \
&& php composer-setup.php \
&& php -r "unlink('composer-setup.php');" \
&& sudo mv composer.phar /usr/local/bin/composer

install valet

composer global require laravel/valet

install rust

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

install nodejs

install go

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment