Getting Started
Software and GitHub Setup
Last updated
Was this helpful?
Software and GitHub Setup
Last updated
Was this helpful?
The majority of setup can be done by following the README on the bustIT Github repo:
The following list of software either are not in brew, or have not been added to the array in that repo (yet).
Use brew search --casks
for additional software/casks that are available
Adapted from the following article. Please see article for more information.
In terminal, run: $ ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
Press enter to accept the default save location of ~/.ssh/id_rsa
Enter a secure passphrase (If need save it in 1Password)
Start SSH Agent in background: $ eval "$(ssh-agent -s)"
Add the following to /.ssh/config
; if it does not exist create it using: touch /.ssh/config
Add SSH private key to ssh-agent and store in keychain: $ ssh-add -K ~/.ssh/id_rsa
Follow this article if needed: