- Run the following command in your terminal to install the Command Line Tools for Xcode:
sudo touch /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress && sudo softwareupdate -i "$(softwareupdate -l | grep -B 1 -E 'Command Line Tools' | awk -F'*' '/^ *\\*/ {print $2}' | sed -e 's/^ *Label: //' -e 's/^ *//' | sort -V | tail -n1)" && sudo rm -f /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress
- Clone this repository into your Documents folder:
cd ~/Documents && git clone https://github.com/webkinder/dotfiles.git && cd ./dotfiles
- Run the script by typing
./install
in your terminal. - Add phpmyadmin to laravel valet by executing the following command:
cd $(brew --prefix phpmyadmin)/share/phpmyadmin && valet link && valet secure phpmyadmin && cd
- Set
$cfg['Servers'][$i]['AllowNoPassword']
totrue
in theconfig.inc.php
file:
vim $(brew --prefix phpmyadmin)/share/phpmyadmin/config.inc.php
- Create a SSH key pair. Replace
[email protected]
with your email address:
ssh-keygen -t ed25519 -a 100 -C "[email protected]"