5.5 KiB
Mac Development Ansible Playbook
This set of playbooks was originally inspired by MWGriffin/ansible-playbooks, but has since been heavily modified, and installs and configures most of the software I use on my Mac for web and software development, as well as my preferred settings for OS X and some of my development applications. Some things in OS X are difficult to get scripted (notably, the Mac App Store), so I still have some manual installation steps, but at least it's all documented here.
This is a work in progress, and is mostly a means for me to document my current Mac's setup. I'll be adding settings and packages to this set of playbooks over time.
See also:
- Battleschool, is a more general solution than what I've built here. (It may be a better option if you don't want to fork this repo and hack it for your own workstation...).
- osxc is another more general solution, set up so you can fork the xc-custom repo and get your own local environment bootstrapped quickly.
Installation
- Clone this repository somewhere on your local drive.
- Install Ansible.
- Run the command
$ ansible-galaxy install -r requirements.txt
inside this directory to install required Ansible roles. - Run
ansible-playbook main.yml -i inventory --ask-sudo-pass
from the same directory as this README file.
Included Applications / Configuration
The following applications are automagically installed:
- Adium
- BetterTouchTool
- Google Chrome
- Dropbox
- Firefox
- Handbrake
- Homebrew
- Menu Meters
- nvALT
- Sequel Pro (MySQL client)
- Skype
- Skitch
- Sublime Text
- Tower (Git client)
- Transmit (S/FTP client)
- Vagrant
- VirtualBox
- VLC
The following homebrew packages are automagically installed:
- autoconf
- gettext
- libevent
- packer
- python
- sqlite
- mysql
- ssh-copy-id
- cowsay
- ios-sim
- readline
- subversion
- kdiff3
- openssl
- pv
- wget
- caskroom/cask/brew-cask
Jeff Geerling's dotfiles are also installed into the current user's home directory, including the .osx
dotfile (which is not run automatically—you can run it on your own with $ sudo ~/.osx
.
Finally, there are a few other preferences and settings added on for various apps and services.
Future additions
Things that still need to be done manually
It's my hope that I can get the rest of these things wrapped up into Ansible playbooks soon, but for now, these steps need to be completed manually (assuming you already have Xcode and Ansible installed, and have run this playbook).
- Install JJG-Term.terminal theme (double-click to install).
- Install Sublime Package Manager.
- Install all the Mac App Store Apps (see below).
- Install all the apps that aren't yet in this setup (see below).
- Remap Caps Lock to Escape (keycode 53), using Seil.
- Set trackpad tracking rate.
- Set mouse tracking rate.
- Setting up iCloud (this was presumably done already during system setup, anyways).
- Configuring extra Mail and/or Calendar accounts.
Applications/packages to be added:
These are mostly direct download links, some are more difficult to install because of custom installers or other nonstandard install quirks:
Configuration to be added:
- I have vim configuration in the repo, but I still need to add the actual installation:
mkdir -p ~/.vim/autoload mkdir -p ~/.vim/bundle cd ~/.vim/autoload curl https://raw.githubusercontent.com/tpope/vim-pathogen/master/autoload/pathogen.vim > pathogen.vim cd ~/.vim/bundle git clone git://github.com/scrooloose/nerdtree.git
Apps only available via the App Store
I also use the following apps at least once or twice per week, but unfortunately, as the Mac App Store is not able to be controlled via CLI, or any other way I can find (so far), I have to manually install all of these apps from within the App Store application.
- Tweetbot
- RadarScope
- Pixelmator
- Skitch
- Quick Resizer
- 1Password
- DaisyDisk
- Byword
- Aperture
- Pages
- Keynote
- Numbers
There are a couple other apps I'm leaving out of the list, like Microsoft Word, because I normally don't install them unless/until I need them; unfortunately, about once a year, I get a document that's so old/strange that I need Word or Powerpoint to open the file. I wish people didn't use document layout and slide presentation applications to send me basic textual information :-/
Ansible for DevOps
If Ansible piques your interest, please check out the book I'm working on, Ansible for DevOps, which will teach you how to do some other amazing things with Ansible.
Author
Jeff Geerling, 2014 (originally forked from MWGriffin/ansible-playbooks).