Skip to content

Instantly share code, notes, and snippets.

View norbert-codes's full-sized avatar
💭
Feeling cute, might break tests later

norbert norbert-codes

💭
Feeling cute, might break tests later
  • no gods, no masters
View GitHub Profile
@norbert-codes
norbert-codes / Vagrantfile
Last active June 23, 2016 18:23
A dead simple LAMP stack box for local development based on scotchbox (https://box.scotch.io/)
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "scotch/box"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.hostname = "scotchbox"
config.vm.synced_folder ".", "/var/www", :mount_options => ["dmode=777", "fmode=666"]
# Naming the VM, to look prettier in e.g. Vagrant Manager VM list (modify to your taste)
@norbert-codes
norbert-codes / gist:9a4bc4ffe7dfbf93e019
Created October 26, 2015 19:52 — forked from bramus/gist:5b4f4733e543912a518f
OS X 10.10 Yosemite, Apache, MySQL, PHP 5.6, (MAMP) Homebrew Dev Setup
# From http://www.iyware.com/osx-yosemite-mamp-homebrew-development-setup/
# Install Homebrew
xcode-select --install
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew doctor
# Tap Repos
brew tap homebrew/dupes
brew tap homebrew/versions