Skip to content

Instantly share code, notes, and snippets.

View bookerbolin's full-sized avatar

Nathan bookerbolin

  • Booker & Bolin
  • DURM
View GitHub Profile
@bookerbolin
bookerbolin / go-craft-go.sh
Created February 9, 2017 02:27 — forked from joshangell/go-craft-go.sh
Sets up a new Craft project in the ~/Sites folder with a bunch of plugins and boilerplate. Geared towards OSX users.
#!/bin/sh
printf "\e[34mEnter name for this site\e[0m\n"
read DOMAIN
if [ -z "$DOMAIN" ];
then
DOMAIN="${PWD##*/}"
fi