Skip to content

Bootstrap a BAE Systems DI NonCorp Mac

License

Notifications You must be signed in to change notification settings

baesystemsdigital/mac-setup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mac-setup

Baseline Install

  1. Set system architecture
if [[ "$( uname -m )" == "arm64" ]]; then
  export APPLE_SILICON="true"
  export BREW_BINARY="/opt/homebrew/bin/brew"
else
  export APPLE_SILICON="false"
  export BREW_BINARY="brew"
fi
  1. Install Xcode
xcode-select --install
  1. Install Rosetta 2 if Apple Silicon
if [[ "${APPLE_SILICON}" == "true" ]]; then
  softwareupdate --install-rosetta --agree-to-license
fi
  1. Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  1. Clone this repository
git clone https://github.com/baesystemsdigitalintelligence/mac-setup.git
  1. Run Brew
${BREW_BINARY} bundle --file mac-setup/Brewfile

Developer Tooling

  1. Run Brew
${BREW_BINARY} bundle --file mac-setup/Brewfile.developer

About

Bootstrap a BAE Systems DI NonCorp Mac

Resources

License

Stars

Watchers

Forks

Languages