💪 Improvements to allow development in c9
This commit is contained in:
parent
88f7194ce6
commit
2a7edb22a0
2 changed files with 4 additions and 1 deletions
4
Makefile
4
Makefile
|
|
@ -1,4 +1,6 @@
|
||||||
export PATH := $(HOME)/bin:$(PATH):/usr/local/bin
|
export PATH := $(HOME)/bin:$(PATH):/usr/local/bin
|
||||||
|
IP ?= 127.0.0.1
|
||||||
|
PORT ?= 4000
|
||||||
|
|
||||||
all: serve
|
all: serve
|
||||||
|
|
||||||
|
|
@ -6,4 +8,4 @@ stage:
|
||||||
bundle exec jekyll build -c '_config.yml,_config.local.yml'
|
bundle exec jekyll build -c '_config.yml,_config.local.yml'
|
||||||
|
|
||||||
serve:
|
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'
|
||||||
|
|
|
||||||
|
|
@ -86,5 +86,6 @@ exclude:
|
||||||
- README.md
|
- README.md
|
||||||
- CNAME
|
- CNAME
|
||||||
- Makefile
|
- Makefile
|
||||||
|
- .c9
|
||||||
|
|
||||||
include: [.circleci]
|
include: [.circleci]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue