4e22f60956
* WIP * fixing layouts and assets updating Gemfile.lock with bundle install (rvm use ruby-2.2.9) Updated links in header and footer switch to paginate v2 gem comment sidebar logic fixing css regression retry paginate updated local ruby version reverting to original pagination gem remove text, make heading roboto, next/prev as buttons * reintoduce dir tree changes format checking new posts shrink fab-icons down to 33px * reintoduce dir tree changes format checking new posts shrink fab-icons down to 33px * next/prev buttons on posts and index * Change "latest" to v1.10 * rename .md to match old blog and added explict permalinks for urls * replacing a link to old blog
19 lines
732 B
Makefile
19 lines
732 B
Makefile
.PHONY: all build build-preview help serve
|
|
|
|
help: ## Show this help.
|
|
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {sub("\\\\n",sprintf("\n%22c"," "), $$2);printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
|
|
|
|
all: build ## Build site with production settings and put deliverables in _site.
|
|
|
|
build: ## Build site with production settings and put deliverables in _site.
|
|
bundle exec jekyll build
|
|
|
|
build-preview: ## Build site with drafts and future posts enabled.
|
|
bundle exec jekyll build --drafts --future --trace
|
|
|
|
serve: ## Boot the development server.
|
|
bundle exec jekyll serve
|
|
|
|
stage: ## Run the Jekyll staging container.
|
|
docker run -ti --rm -v "${PWD}":/k8sdocs -p 4000:4000 gcr.io/google-samples/k8sdocs:1.1
|