Skip to content

Instantly share code, notes, and snippets.

@adomenech73
Created October 3, 2017 17:28
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 adomenech73/a6323611184300c5985f2d6cede9a137 to your computer and use it in GitHub Desktop.
Save adomenech73/a6323611184300c5985f2d6cede9a137 to your computer and use it in GitHub Desktop.
ProvisioningMacbook.md
# Creating ssh certs
ssh-keygen -b 4096 -t rsa
# Show hidden files on Finder
defaults write com.apple.finder AppleShowAllFiles YES
# Install homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install Python2
brew install python
# Install Python3
brew install python3
# install pipenv
alies pip=pip2
# install ansible
brew install ansible
# install git
[https://git-scm.com/download/mac](git)
# configure git
git config --global user.email "albert.domenech@reviewpro.com"
git config --global user.name "Albert Doménech"
git config --global core.editor "nano"
git config --global color.ui true
# Install docker
curl -O https://download.docker.com/mac/stable/Docker.dmg
sudo hdiutil attach Docker.dmg
# Install ansible tools
pip2 install ansible-lint
pip2 install ansible-inventory-grapher
# oh_my_zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment