From 84140d26304878e88041cca2643efef4ef25f7d0 Mon Sep 17 00:00:00 2001 From: Joel Kesler Date: Wed, 20 Mar 2024 17:34:06 -0600 Subject: [PATCH 1/9] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 98e3a63..58c97bb 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,9 @@ -# Setup a New Developer Computer +# Setup a New Dev Computer - For Designers + +> [!NOTE] +> This is a simplified version for designers who don't need things like Go or GCP + + This script will help with the quick setup and installation of tools and applications for new developers at Vendasta. Tested in Mac OS 10.14 to 12. This script works on both Intel and M1/M2 Macs. You can run this script multiple times without issue. You can also run it on a partially set-up computer and it will only install what is missing. From f9cc673f35ca21ff45aa4775a1504c47fa72b2eb Mon Sep 17 00:00:00 2001 From: Joel Kesler Date: Wed, 20 Mar 2024 17:34:58 -0600 Subject: [PATCH 2/9] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 58c97bb..dc01951 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Looking to use this script at your own company? Check out the [tips for using th Paste the command below in a Mac OS Terminal: ``` -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/vendasta/setup-new-computer-script/master/setup-new-computer.sh)" +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/vendasta/setup-new-computer-script/for-designers/setup-new-computer.sh)" ``` ## Manual Install Instructions From d8ae7228a2ee8c95d0076400d002f936dc6929f5 Mon Sep 17 00:00:00 2001 From: Joel Kesler Date: Wed, 20 Mar 2024 17:45:10 -0600 Subject: [PATCH 3/9] Update setup-new-computer.sh --- setup-new-computer.sh | 204 ++---------------------------------------- 1 file changed, 7 insertions(+), 197 deletions(-) diff --git a/setup-new-computer.sh b/setup-new-computer.sh index 8a51907..b9cc1e1 100755 --- a/setup-new-computer.sh +++ b/setup-new-computer.sh @@ -1,8 +1,8 @@ #!/bin/bash -VERSION="v3.4.0" +VERSION="v3.4.0 - for designers" #=============================================================================== -# title setup-new-computer.sh +# title setup-new-computer.sh for Designers # author Joel Kesler # https://github.com/joelkesler #=============================================================================== @@ -28,15 +28,6 @@ README="https://github.com/vendasta/setup-new-computer-script#post-installation- #=============================================================================== -# IDEs to make availabe. Please also adjust code to brew cask install -options[0]="Visual Studio Code"; devtoolchoices[0]="+" -options[1]="Jetbrains Toolbox"; devtoolchoices[1]="" -options[2]="Pycharm"; devtoolchoices[2]="" -options[3]="Goland"; devtoolchoices[3]="" -options[4]="Webstorm"; devtoolchoices[4]="" -options[5]="Sublime Text"; devtoolchoices[5]="" -options[6]="iTerm2"; devtoolchoices[6]="" - #=============================================================================== # Functions @@ -89,17 +80,6 @@ cat << "EOT" EOT } -showIDEMenuLoop() { - # from https://serverfault.com/a/777849 - printLogo - printHeading "Select Optional IDEs and Tools" - printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' - - echo "" - for NUM in "${!options[@]}"; do - echo "[""${devtoolchoices[NUM]:- }""]" $(( NUM+1 ))") ${options[NUM]}" - done - echo "" -} writetoBashProfile() { cat << EOT >> ~/.bash_profile @@ -133,20 +113,6 @@ if type brew &>/dev/null; then fi fi -# Google Cloud SDK -[ -e "\$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.bash.inc" ] && \ - source "\$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.bash.inc" -[ -e "\$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.bash.inc" ] && \ - source "\$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.bash.inc" - -# Golang -export GOPRIVATE="github.com/vendasta" -export GOPROXY="direct" -export GO111MODULE="on" -export GOPATH=\$HOME/go -export GOBIN=\$GOPATH/bin -export PATH=\$PATH:\$GOBIN - # NVM # This needs to be after "Setting up Path for Homebrew" to override Homebrew Node export NVM_DIR="\$HOME/.nvm" @@ -162,7 +128,7 @@ export NODE_OPTIONS=--max_old_space_size=12000 # Update Node to selected version and reinstall previous packages node-upgrade() { new_version=\${1:?"Please specify a version to upgrade to. Example: node-upgrade 20"} - nvm install "\$new_version" --reinstall-packages-from=current + nvm install "\$new_version" --reinstall-packages-from=current --latest-npm nvm alias default "\$new_version" # nvm uninstall "\$prev_ver" nvm cache clear @@ -204,20 +170,6 @@ autoload -U +X compinit && compinit autoload -U +X bashcompinit && bashcompinit fpath=(/usr/local/share/zsh-completions \$fpath) -# Google Cloud SDK -[ -e "\$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.zsh.inc" ] && \ - source "\$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.zsh.inc" -[ -e "\$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.zsh.inc" ] && \ - source "\$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.zsh.inc" - -# Golang -export GOPRIVATE="github.com/vendasta" -export GOPROXY="direct" -export GO111MODULE="on" -export GOPATH=\$HOME/go -export GOBIN=\$GOPATH/bin -export PATH=\$PATH:\$GOBIN - # NVM # This needs to be after "Setting up Path for Homebrew" to override Homebrew Node export NVM_DIR="\$HOME/.nvm" @@ -233,7 +185,7 @@ export NODE_OPTIONS=--max_old_space_size=12000 # Update Node to selected version and reinstall previous packages node-upgrade() { readonly new_version=\${1:?"Please specify a version to upgrade to. Example: node-upgrade 20"} - nvm install "\$new_version" --reinstall-packages-from=current + nvm install "\$new_version" --reinstall-packages-from=current --latest-npm nvm alias default "\$new_version" # nvm uninstall "\$prev_ver" nvm cache clear @@ -272,34 +224,6 @@ EOT } -#=============================================================================== -# Installer: Settings -#=============================================================================== - - -# Show IDE Selection Menu -clear -while - showIDEMenuLoop && \ - read -r -e -p "Enable or Disable by typing number. Hit ENTER to continue " \ - -n1 SELECTION && [[ -n "$SELECTION" ]]; \ -do - clear - if [[ "$SELECTION" == *[[:digit:]]* && $SELECTION -ge 1 && $SELECTION -le ${#options[@]} ]]; then - (( SELECTION-- )) - if [[ "${devtoolchoices[SELECTION]}" == "+" ]]; then - devtoolchoices[SELECTION]="" - else - devtoolchoices[SELECTION]="+" - fi - ERROR=" " - else - ERROR="Invalid option: $SELECTION" - fi -done -printDivider - - #=============================================================================== # Installer: Set up shell profiles @@ -379,7 +303,6 @@ printHeading "Installing Brew Packages" printStep "Bash" "brew install bash" printStep "bash-completion" "brew install bash-completion" printStep "zsh-completions" "brew install zsh-completions" - printStep "Ruby" "brew install ruby" printStep "Git" "brew install git" printDivider @@ -388,75 +311,13 @@ printDivider # Install Apps printHeading "Installing Applications" - if [[ -d "/Applications/Firefox.app" ]]; then - printDivider - echo "✔ Firefox already installed. Skipping" - else - printStep "Firefox" "brew install --cask firefox" - fi - - if [[ -d "/Applications/Google Chrome.app" ]]; then - printDivider - echo "✔ Google Chrome already installed. Skipping" - else - printStep "Google Chrome" "brew install --cask google-chrome" - fi - if [[ -d "/Applications/Docker.app" ]]; then + if [[ -d "/Applications/Visual Studio Code.app" ]]; then printDivider - echo "✔ Docker already installed. Skipping" + echo "✔ Visual Studio Code already installed. Skipping" else - printStep "Docker for Mac" "brew install --cask docker" - fi - - if [[ -d "/Applications/Postman.app" ]]; then - printDivider - echo "✔ Postman already installed. Skipping" - else - printStep "Postman" "brew install --cask postman" - fi - - # Install Visual Studio Code - if [[ "${devtoolchoices[0]}" == "+" ]]; then printStep "Visual Studio Code" "brew install --cask visual-studio-code" fi - # Install Jetbrains Toolbox - if [[ "${devtoolchoices[1]}" == "+" ]]; then - printStep "Jetbrains Toolbox" "brew install --cask jetbrains-toolbox" - fi - # Install PyCharm - if [[ "${devtoolchoices[2]}" == "+" ]]; then - printStep "PyCharm" "brew install --cask pycharm" - fi - # Install Goland - if [[ "${devtoolchoices[3]}" == "+" ]]; then - printStep "Goland" "brew install --cask goland" - fi - # Install WebStorm - if [[ "${devtoolchoices[4]}" == "+" ]]; then - printStep "WebStorm" "brew install --cask webstorm" - fi - # Install Sublime Text - if [[ "${devtoolchoices[5]}" == "+" ]]; then - printStep "Sublime Text" "brew install --cask sublime-text" - fi - # Install iTerm2 - if [[ "${devtoolchoices[6]}" == "+" ]]; then - printStep "iTerm2" "brew install --cask iterm2" - fi -printDivider - - -#Install Go -# TODO: check with @cpenner about current best way to install -printHeading "Installing Go" - printDivider - echo "✔ Creating Go directory in home folder [~/go]" - mkdir -p ~/go - printStep "Go" "brew install go" - printDivider - echo "✔ Setting GOPRIVATE enviromental variable" - go env -w GOPRIVATE="github.com/vendasta" printDivider @@ -480,7 +341,7 @@ printHeading "Installing Node and Angular CLI through NVM" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm printDivider echo "Installing Node..." - nvm install 20 + nvm install 20 --latest-npm printStep "Angular CLI" "npm install --location=global @angular/cli" printStep "NX" "npm install --location=global nx" printStep "Husky" "npm install --location=global husky" @@ -500,29 +361,6 @@ printHeading "Installing Node and Angular CLI through NVM" printDivider -# Install Google Cloud SDK and Components -printHeading "Install Google Cloud SDK and Components" - printStep "Google Cloud SDK" "brew install --cask google-cloud-sdk" - printDivider - echo "✔ Prepping Autocompletes and Paths" - source "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.bash.inc" - source "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.bash.inc" - printDivider - if [ -e ~/google-cloud-sdk ]; then - echo "✔ ~/google-cloud-sdk exists. Skipping" - else - echo "✔ Creating ~/google-cloud-sdk symlink" - ln -s "$(brew --prefix)/Caskroom/google-cloud-sdk" ~/google-cloud-sdk &>/dev/null - # make a convenience symlink at the install path for google-cloud-sdk when installed manually - fi - printStep "App Engine - Go" "gcloud components install app-engine-go --quiet" - printStep "App Engine - Python" "gcloud components install app-engine-python --quiet" - printStep "App Engine - Python Extras" "gcloud components install app-engine-python-extras --quiet" - printStep "Kubectl" "gcloud components install kubectl --quiet" - printStep "Docker Credentials" "gcloud components install docker-credential-gcr --quiet" -printDivider - - # Install System Tweaks printHeading "System Tweaks" printDivider @@ -540,17 +378,10 @@ printHeading "System Tweaks" echo "✔ Typing: Disable smart quotes and dashes as they cause problems when typing code" defaults write NSGlobalDomain NSAutomaticQuoteSubstitutionEnabled -bool false defaults write NSGlobalDomain NSAutomaticDashSubstitutionEnabled -bool false - echo "✔ Typing: Disable press-and-hold for keys in favor of key repeat" - defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false printDivider - echo "✔ Finder: Show status bar and path bar" - defaults write com.apple.finder ShowStatusBar -bool true - defaults write com.apple.finder ShowPathbar -bool true echo "✔ Finder: Disable the warning when changing a file extension" defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false - echo "✔ Finder: Show the ~/Library folder" - chflags nohidden ~/Library printDivider echo "✔ Safari: Enable Safari’s Developer Settings" @@ -561,27 +392,6 @@ printHeading "System Tweaks" defaults write NSGlobalDomain WebKitDeveloperExtras -bool true printDivider - # Note: The chrome defaults can cause your Chrome browser to display a message stating - # that Chrome is "Managed by your organization" when it isn't - # - # To view policies that are affecting this message, view the following pages: - # chrome://policy and chrome://management/ - # - # To quickly remove Chrome default overrides, run the following commands: - # defaults delete com.google.Chrome - # defaults delete com.google.Chrome.canary - # - echo "✔ Chrome: Disable the all too sensitive backswipe on Trackpads and Magic Mice" - defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls -bool false - defaults write com.google.Chrome.canary AppleEnableSwipeNavigateWithScrolls -bool false - defaults write com.google.Chrome AppleEnableMouseSwipeNavigateWithScrolls -bool false - defaults write com.google.Chrome.canary AppleEnableMouseSwipeNavigateWithScrolls -bool false - echo "✔ Chrome: Use the system print dialog and expand dialog by default" - defaults write com.google.Chrome DisablePrintPreview -bool true - defaults write com.google.Chrome.canary DisablePrintPreview -bool true - defaults write com.google.Chrome PMPrintingExpandedStateForPrint2 -bool true - defaults write com.google.Chrome.canary PMPrintingExpandedStateForPrint2 -bool true -printDivider From a5d2df498f7316ee25efa17b217b3fa10d6ecfbf Mon Sep 17 00:00:00 2001 From: Joel Kesler Date: Wed, 20 Mar 2024 17:45:41 -0600 Subject: [PATCH 4/9] Update setup-new-computer.sh --- setup-new-computer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup-new-computer.sh b/setup-new-computer.sh index b9cc1e1..1d8d2a3 100755 --- a/setup-new-computer.sh +++ b/setup-new-computer.sh @@ -23,7 +23,7 @@ VERSION="v3.4.0 - for designers" # Use the email and name you use for Github # # 5. Follow the Post Installation Instructions in the Readme: -README="https://github.com/vendasta/setup-new-computer-script#post-installation-instructions" +README="https://github.com/vendasta/setup-new-computer-script/tree/for-designers#post-installation-instructions" # #=============================================================================== From fc358721dffd291b2839503a4145a1edfada4c00 Mon Sep 17 00:00:00 2001 From: Joel Kesler Date: Wed, 20 Mar 2024 17:49:16 -0600 Subject: [PATCH 5/9] Update README.md --- README.md | 233 +----------------------------------------------------- 1 file changed, 1 insertion(+), 232 deletions(-) diff --git a/README.md b/README.md index dc01951..1320b3f 100644 --- a/README.md +++ b/README.md @@ -81,11 +81,6 @@ compaudit | xargs chmod g-w
-**Setting Up Pycharm with Python 2.7**\ -As Mac OS has recently removed the bundled copy of Python 2.7, please see [this help document on working with our Legacy Appengine projects](https://vendasta.jira.com/wiki/spaces/RD/pages/1688469847/Pycharm+Setup+for+Legacy+Appengine+Python+2.7) - -
- **Installing and Upgrading Node and NPM versions**\ There is a handy command in your `.bash_profile` and `.zsh_profile` that will automatically install your chosen version of Node and NPM, re-install any global npm packages (like angular cli), and set the newly installed version as default. @@ -181,20 +176,6 @@ if type brew &>/dev/null; then fi fi -# Google Cloud SDK -[ -e "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.bash.inc" ] && - source "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.bash.inc" -[ -e "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.bash.inc" ] && - source "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.bash.inc" - -# Golang -export GOPRIVATE="github.com/vendasta" -export GOPROXY="direct" -export GO111MODULE="on" -export GOPATH=$HOME/go -export GOBIN=$GOPATH/bin -export PATH=$PATH:$GOBIN - # NVM # This needs to be after "Setting up Path for Homebrew" to override Homebrew Node export NVM_DIR="$HOME/.nvm" @@ -249,17 +230,6 @@ autoload -U +X compinit && compinit autoload -U +X bashcompinit && bashcompinit fpath=(/usr/local/share/zsh-completions $fpath) -# Google Cloud SDK -[ -e "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.zsh.inc" ] && source "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.zsh.inc" -[ -e "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.zsh.inc" ] && source "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.zsh.inc" - -# Golang -export GOPRIVATE="github.com/vendasta" -export GOPROXY="direct" -export GO111MODULE="on" -export GOPATH=$HOME/go -export GOBIN=$GOPATH/bin -export PATH=$PATH:$GOBIN # NVM # This needs to be after "Setting up Path for Homebrew" to override Homebrew Node @@ -339,16 +309,6 @@ node-upgrade() { ### Languages -
- Go - - ```sh - mkdir -p ~/go - brew install go - go env -w GOPRIVATE="github.com/vendasta" - ``` -
-
Node (from nvm, with npm, nx, husky, Angular CLI, Node-Sass, and Node-Gyp) @@ -392,76 +352,6 @@ export NVM_DIR="$HOME/.nvm"
-
- Ruby - -```sh -brew install ruby -``` -
- - -
- Google Cloud Components - -```sh -brew install --cask google-cloud-sdk -source "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.bash.inc" -source "$(brew --prefix)/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.bash.inc" -if [ -e ~/google-cloud-sdk ]; then - echo "✔ ~/google-cloud-sdk exists. Skipping" -else - echo "✔ Creating ~/google-cloud-sdk symlink" - ln -s "$(brew --prefix)/Caskroom/google-cloud-sdk" ~/google-cloud-sdk &>/dev/null - # make a convenience symlink at the install path for google-cloud-sdk when installed manually -fi -gcloud components install app-engine-go --quiet -gcloud components install app-engine-python --quiet -gcloud components install app-engine-python-extras --quiet -gcloud components install kubectl --quiet -gcloud components install docker-credential-gcr --quiet -``` -
- - -### Applications - -
- Firefox - -```sh -brew install --cask firefox -``` -
- - -
- Google Chrome - -```sh -brew install --cask google-chrome -``` -
- - -
- Docker for Mac - -```sh -brew install --cask docker -``` -
- - -
- Postman - -```sh -brew install --cask postman -``` -
- - ### Optional IDEs and Tools
@@ -473,60 +363,6 @@ brew install --cask visual-studio-code
-
- Jetbrains Toolbox - -```sh -brew install --cask jetbrains-toolbox -``` -
- - -
- Pycharm - -```sh -brew install --cask pycharm -``` -
- - -
- Goland - -```sh -brew install --cask goland -``` -
- - -
- WebStorm - -```sh -brew install --cask webstorm -``` -
- - -
- Sublime Text - -```sh -brew install --cask sublime-text -``` -
- - -
- iTerm2 - -```sh -brew install --cask iterm2 -``` -
- - ### System Tweaks
@@ -565,23 +401,6 @@ defaults write NSGlobalDomain NSAutomaticDashSubstitutionEnabled -bool false ```
-
- Typing: Disable press-and-hold for keys in favor of key repeat - -```sh -defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false -``` -
- -
- Finder: Show status bar and path bar - -```sh -defaults write com.apple.finder ShowStatusBar -bool true -defaults write com.apple.finder ShowPathbar -bool true -``` -
-
Finder: Disable the warning when changing a file extension @@ -590,14 +409,6 @@ defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false ```
-
- Finder: Show the ~/Library folder - -```sh -chflags nohidden ~/Library -``` -
-
Safari: Enable Safari’s Developer Settings @@ -610,48 +421,6 @@ defaults write NSGlobalDomain WebKitDeveloperExtras -bool true ```
-
- Chrome: Disable the all too sensitive backswipe on Trackpads and Magic Mice - -```sh -# Note: The chrome defaults can cause your Chrome browser to display a message stating -# that Chrome is "Managed by your organization" when it isn't -# -# To view policies that are affecting this message, view the following pages: -# chrome://policy and chrome://management/ -# -# To quickly remove Chrome default overrides, run the following commands: -# defaults delete com.google.Chrome -# defaults delete com.google.Chrome.canary -# -defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls -bool false -defaults write com.google.Chrome.canary AppleEnableSwipeNavigateWithScrolls -bool false -defaults write com.google.Chrome AppleEnableMouseSwipeNavigateWithScrolls -bool false -defaults write com.google.Chrome.canary AppleEnableMouseSwipeNavigateWithScrolls -bool false -``` -
- -
- Chrome: Use the system print dialog and expand dialog by default - -```sh -# Note: The chrome defaults can cause your Chrome browser to display a message stating -# that Chrome is "Managed by your organization" when it isn't -# -# To view policies that are affecting this message, view the following pages: -# chrome://policy and chrome://management/ -# -# To quickly remove Chrome default overrides, run the following commands: -# defaults delete com.google.Chrome -# defaults delete com.google.Chrome.canary -# -defaults write com.google.Chrome DisablePrintPreview -bool true -defaults write com.google.Chrome.canary DisablePrintPreview -bool true -defaults write com.google.Chrome PMPrintingExpandedStateForPrint2 -bool true -defaults write com.google.Chrome.canary PMPrintingExpandedStateForPrint2 -bool true -``` -
- ### Set up Git @@ -705,7 +474,7 @@ fi ## Tips for using the script at your own company -This script helps new developers at Vendasta setup their laptops quicker, letting them hit the ground running. Before, it could take 2-5 days to install and configure everything, leading to a frustrating first week. With this script and fast internet, the process can be done in under 30 min. +This script helps designers who whish to learn how to code at Vendasta setup their laptops quicker, letting them hit the ground running. Before, it could take 2-5 days to install and configure everything, leading to a frustrating first week. With this script and fast internet, the process can be done in under 30 min. I have tried to make this script simple and useful. You will want to customize the installation and configuration to match the tools and services you use at your company. From c368c44d3b4c437f9857535dc7addec504ba46e5 Mon Sep 17 00:00:00 2001 From: Joel Kesler Date: Wed, 20 Mar 2024 17:50:34 -0600 Subject: [PATCH 6/9] Update README.md --- README.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/README.md b/README.md index 1320b3f..7ca5650 100644 --- a/README.md +++ b/README.md @@ -55,14 +55,6 @@ After you have run the script, please complete the following steps to finish set [generate key]: https://help.github.com/en/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent [add to github]: https://help.github.com/en/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account -
- -2. **Vendasta specific tools**\ - Follow our onboarding document to complete your setup: - - [Onboarding New Developers - Setup New Developer’s Computer - Next Steps][nextsteps] - - [nextsteps]: https://vendasta.jira.com/wiki/spaces/RD/pages/199032984/Onboarding+New+Developers#New-Dev%5BhardBreak%5DSetup-New-Developer%E2%80%99s-Computer-with-a-script -

From c729d1db8763335b8141b6263b4ba5ebd8427221 Mon Sep 17 00:00:00 2001 From: Joel Kesler Date: Wed, 20 Mar 2024 17:51:22 -0600 Subject: [PATCH 7/9] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7ca5650..9fdaea0 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ -# Setup a New Dev Computer - For Designers - > [!NOTE] -> This is a simplified version for designers who don't need things like Go or GCP +> This is a simplified version for designers who don't need things like Go or GCP. +> For the full script, check out https://github.com/vendasta/setup-new-computer-script/ + +# Setup a New Dev Computer - For Designers! This script will help with the quick setup and installation of tools and applications for new developers at Vendasta. Tested in Mac OS 10.14 to 12. This script works on both Intel and M1/M2 Macs. From ca78fec93eefae95f2260e2f33787592979cf541 Mon Sep 17 00:00:00 2001 From: Joel Kesler Date: Wed, 20 Mar 2024 17:51:36 -0600 Subject: [PATCH 8/9] Update README.md --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 9fdaea0..55944a3 100644 --- a/README.md +++ b/README.md @@ -13,10 +13,6 @@ The script will create/modify `.bash_profile` and `.zprofile` with path and auto
-Looking to use this script at your own company? Check out the [tips for using the script at your own company](#tips-for-using-the-script-at-your-own-company) section. - -
- ## Quick Install Instructions Paste the command below in a Mac OS Terminal: From 4ff40ed49af30b7341918082249cbc2f8b6cfabd Mon Sep 17 00:00:00 2001 From: Joel Kesler Date: Wed, 20 Mar 2024 17:55:28 -0600 Subject: [PATCH 9/9] Update setup-new-computer.sh --- setup-new-computer.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup-new-computer.sh b/setup-new-computer.sh index 1d8d2a3..c9bb00c 100755 --- a/setup-new-computer.sh +++ b/setup-new-computer.sh @@ -229,6 +229,8 @@ EOT # Installer: Set up shell profiles #=============================================================================== +# Show ascii art +printLogo # Create .bash_profile and .zprofile if they dont exist printHeading "Prep Bash and Zsh"