🔖🚧 Initial commit

This commit is contained in:
Dan Jones 2017-06-04 22:05:40 -05:00
commit da5dd153e3
10 changed files with 588 additions and 0 deletions

20
Makefile Normal file
View file

@ -0,0 +1,20 @@
export PATH := $(HOME)/bin:$(PATH):/usr/local/bin
POINT=$(shell echo $$((RANDOM%79+128512)) )
EMOJI=$(shell printf '%x' $(POINT) )
all: deploy
build:
true
stage: build
bundle exec jekyll build -c '_config.yml,_config.local.yml'
serve: stage
cd _site; php -S localhost:9090
deploy: build
git add -A _posts _data archives
git commit -m "[Add] `printf "\U$(EMOJI)"` `date`: `fortune -s -n 61 | tr '\n' ' ' | sed -r 's/[[:blank:]]+/ /g'`"
git push origin master