💪 Improvements to allow development in c9

This commit is contained in:
Dan Jones 2018-02-06 17:22:10 +00:00
commit 2a7edb22a0
2 changed files with 4 additions and 1 deletions

View file

@ -1,4 +1,6 @@
export PATH := $(HOME)/bin:$(PATH):/usr/local/bin
IP ?= 127.0.0.1
PORT ?= 4000
all: serve
@ -6,4 +8,4 @@ stage:
bundle exec jekyll build -c '_config.yml,_config.local.yml'
serve:
bundle exec jekyll serve -c '_config.yml,_config.local.yml'
bundle exec jekyll serve -H "$(IP)" -P "$(PORT)" -c '_config.yml,_config.local.yml'

View file

@ -86,5 +86,6 @@ exclude:
- README.md
- CNAME
- Makefile
- .c9
include: [.circleci]