From 0cee01261cb7142bd652f42710e8dd9f4ff291eb Mon Sep 17 00:00:00 2001 From: Chris Bednarski Date: Mon, 6 Jul 2015 14:53:17 -0600 Subject: [PATCH] Added a makefile for the docs repo --- website/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 website/Makefile diff --git a/website/Makefile b/website/Makefile new file mode 100644 index 000000000..9888cfa82 --- /dev/null +++ b/website/Makefile @@ -0,0 +1,10 @@ +all: build + +init: + bundle + +dev: init + PACKER_DISABLE_DOWNLOAD_FETCH=true PACKER_VERSION=1.0 bundle exec middleman server + +build: init + PACKER_DISABLE_DOWNLOAD_FETCH=true PACKER_VERSION=1.0 bundle exec middleman build