diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-06 02:23:13 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-06 02:23:13 +0200 |
commit | 019ba984ba2769c804cfae725b93c3aceff338f9 (patch) | |
tree | 3ec8d770d47ea3fb1775500a84a2209535a1259a /Makefile | |
parent | bump dependencies (diff) | |
download | wireguard-config-019ba984ba2769c804cfae725b93c3aceff338f9.tar.gz wireguard-config-019ba984ba2769c804cfae725b93c3aceff338f9.zip |
move Jekyll options to _config.yml
Diffstat (limited to '')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -38,13 +38,15 @@ npm: .PHONY: all-deps all-deps: deps npm +jekyll := bundle exec jekyll + .PHONY: build build: - bundle exec jekyll build --drafts + $(jekyll) build .PHONY: serve serve: - bundle exec jekyll serve --drafts --host 0.0.0.0 + $(jekyll) serve URL := http://localhost:4000/wireguard-config/ |