How I Set Up My Mac Development Machine

Nice article. Thanks for sharing. I tend to use more open source tools myself, but really enjoy Sublime Text as well.

Thanks for your feedback @jeb_baxley. I do, for the most part myself. But I like a mix of whatever works best for me, or whatever combination I feel most comfortable and productive with. What other tools do you use?

I do more than just dev work. I also do sys admin work. So a lot of the tools that I use are for that as well.

For a VM I like virtualbox - it’s simple enough and does what I need from it

I use VIM on the cli and SublimeText for working on anything that involves text - be it coding or configuring a system.

For version control, git is awesome. I like to use the gui from github on the mac - as it just makes it easier to deal with. I have setup a gitlab repo at work for and on that I use the cmli with the .ssh/config setup to make it easier.

I did like Evernote - but started to worry about what I put in there. So I stopped using it and moved to Zimwiki for my documentation. I don’t really have a notes workflow at the moment. Right now, I’m using a cron job to sync my zimwiki files back to a gitlab installation for backup and version control.

For databases, I usually cli it - but have used workbench from mysql. On my mac, i use Sequel Pro - it’s fantastic.

1 Like

You have a similar set-up to me.

  • PHPStorm
  • TexWrangler
  • Adobe Creative Suite
  • Vagrant
  • MySQL Workbench
  • SourcreTree
  • Hangouts
  • Microsoft Office

Using markdown instead of word sounds interesting but also a pain in the arse. I might explore that some. Also, looking into something better than TextWrangler

I kept my focus primarily to dev work, as that, and technical writing, is what I do the most. But thanks for mentioning the sys admin aspect; which I overlooked. I’d love to code more with VIM, in contrast, I find that for manipulating text, VIM is second to none.

I know what you mean about Evernote. I think they’re ok, but the question sits at the back of your mind, whether you can really trust all of your data to one location. Have you tried Paperwork?

I used to use the GitHub gui, but didn’t use it for long. Gitlab, though I’ve not used it much, is pretty damn good. Thanks again for sharing. Always helpful to know how other people work, and about other tools

Hi @oddz, thanks for your feedback. I’m not much of a designer, so don’t use the Adobe suite much. I can’t recommend VIM enough for manipulating any kind of text. But I must say, it definitely has an initially steep learning curve. There’s a range of Markdown editors, each with varying pros and cons. If you get hooked on the format, there’s no going back. It, along with Pandoc, is just so flexible.

Quite similar to my setup, I just want to give a thumbs up for Coda. As you, I use PhpStorm, but for HTML and CSS, Coda is where I go. Also, Sequel Pro is on my list. If there are someone out there dabbling in MySQL, seriously give Sequel Pro a try. Awesome program.

That’s… that’s so much work. Why not just run a few scripts? The terminal is your friend!

http://lapwinglabs.com/blog/hacker-guide-to-setting-up-your-mac

Also, if you’re using vim for MarkDown, why not use it for everything? It can do everything and more that any other standalone editor can do.

And since you’re already in the terminal, why bother leaving to use GitK? Just use git right there in the terminal. Hell, install the fugitive vim plugin and use git right from within Vim! And while we’re at it, might as well use the terminal to browse your databases as well. No point in opening up some GUI there, either.

Point is, CLI EVERYTHING FOREVER. Except your browser and photo editors. CLI is rubbish at that.

One reason to use vagrant instead of running php and apache on the same machine is to run multiple versions of php. Another would be installing stuff on a Linux machine is always so much easier. Not to mention you’re not clobbering your host machine with dev software installs that could potentially be destructive to the os. I also work on a variety of projects using different versions of software not just php. It is much easier to manage different projects on dedicated vm than it is on a single host machine because upgrading anything has the potential to affect all projects on the machine. With dedicated vm so long as the project is on a different vm installing and/ or upgrading libraries and extensions will have no impact to projects hosted on a different vm.

For me it’s:

Sublime Text 3 for IDE
SourceTree for Git stuff
Sequel Pro for MySQL
Transmit for FTP
Raindrop for Bookmarking
Slicy for slicing images
imageOptim & imageAlpha & JPEGMini for image optimization

You can just use a php version manger like php-version, phpbrew, or phpenv – just like you would managing ruby versions with rvm. Granted, I’ve been meaning to check out vagrant to see how it could improve my workflow, but I, for one, like having my machine be my server. For one, I have a dedicated IP (or you could just use dyndns) so I can easily SSH into my home dev machine from anywhere, make changes, and see them reflected on the web. I’m not sure if this sort of flexibility is available with a virtual machine solution.

My set-up is pretty similar, by-and-large. But two honourable mentions;

iTerm2 is a really good, drop-in replacement for Terminal; great if you work on the command-line a lot, as I do.

And the app - well, strictly speaking it’s a Chrome packaged app - I find myself using almost as much as my trusty editors is Postman. Perfect for testing API’s, as well as debugging HTTP requests.

Both are free, which is nice.

Lukas, thanks for sharing. iTerm2 and Postman. I don’t know how I overlooked these two. Postman is something, in my current project, I can’t live without. It’s a great app, definitely worth using. I’m not as experienced with iTerm2; but should also give an honourable mention to screen and Terminator; Though I’ve never gotten Terminator working properly on OS X; yet.

Ben, thanks for your input. I used to use Transmit a bit, and definitely found it a well polished application. I’ve not used Raindrop or Slicy, but will definitely check them out. imageOptim I can’t speak of more highly. Great app, does a great job and painless to use.

John, thanks for the link - what a wealth of information. I’m coming up to reinstalling my Mac, to see if it gives me a speed boost and drive space saving. I’ll definitely be checking out those scripts. I’d heard of it a while ago, but never put time in to investigating it fully. I love the CLI, but a good GUI, depending on what it’s meant to do, still has a place. WRT browsers, I believe there’s a vim browser, believe it or not.

I’m still a bit mixed on installing dev tools in OS X versus just using a VirtualBox or Vagrant VM. Sometimes it feels much cleaner, more efficient and organised to keep everything dev-related in a VM. Thanks for the links to php-version, phpbrew etc. rvm is great, so if these tools can do the same for PHP, I’m up for giving them a try.

Nice! You forgot to mention:

Both have become a vital part of my development workflow.

I really like the idea of a single management console for all the different databases, but I can’t find the Navicat Lite download. Do you just sign up for a trial and never upgrade?

Just a little direction would help. Thanks

The trial period is limited. See the online link.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.