- Get virtualization software (we recommend Virtual Box https://www.virtualbox.org unless you have a VMWare or other license. These directions depend on the default Virtual Box)
- Install it
- Get Vagrant from http://vagrantup.com
- Install it
- If you are on Windows, install git from http://msyspit.github.io
- Make sure that you choose Use Git from Windows Command Prompt
- If you are on Windows run the following commands from with in a git bash prompt. If you are on Mac or Linux, just use a command prompt
- Make a directory for your vagrant boxes (ie, mkdir Vagrants) and change directory into it
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ~ ☯ whois dicemonkeys.com | |
| Whois Server Version 2.0 | |
| Domain names in the .com and .net domains can now be registered | |
| with many different competing registrars. Go to http://www.internic.net | |
| for detailed information. | |
| Domain Name: DICEMONKEYS.COM | |
| Registrar: GODADDY.COM, LLC |
###Mac OSX Development/Admin Tools
0 - XCode
XCode, or at least the XCode command line extensions, are at the core of any development work that you are going to do on a Mac. You'll need to install it to get things like the C Complier and bootstrap the build environment. If you are going to be doing iOS or Mac OSX development, get the entire package from the App Store. If you are not, just install Homebrew, and it will prompt you to install the XCode CLI tools.
1 - Homebrew
OSX Unix Package Manager. The site is at brew.sh. You can use this to install things like Git, Ruby, Python, etc.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| daemon off; | |
| # Heroku dynos have at least 4 cores. | |
| worker_processes <%= ENV['NGINX_WORKERS'] || 4 %>; | |
| events { | |
| use epoll; | |
| accept_mutex on; | |
| worker_connections 1024; | |
| } |
OlderNewer