-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit converts content and layout to use Hugo.
- Loading branch information
Showing
2,327 changed files
with
10,922 additions
and
171,497 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
.PHONY: all build build-preview help serve | ||
.PHONY: all build sass 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. | ||
|
||
sass: # Rebuild the SASS source into CSS | ||
node-sass --output-style compact ./src/sass/styles.sass ./static/css/styles.css | ||
node-sass --output-style compact ./src/sass/case_study_styles.sass ./static/css/case_study_styles.css | ||
|
||
build: ## Build site with production settings and put deliverables in _site. | ||
bundle exec jekyll build | ||
hugo | ||
|
||
build-preview: ## Build site with drafts and future posts enabled. | ||
bundle exec jekyll build --drafts --future --trace | ||
hugo -D -F | ||
|
||
serve: ## Boot the development server. | ||
bundle exec jekyll serve | ||
hugo server | ||
|
||
stage: ## Run the Jekyll staging container. | ||
docker run -ti --rm -v "${PWD}":/k8sdocs -p 4000:4000 gcr.io/google-samples/k8sdocs:1.1 | ||
stage: ## This needs to be updated for Hugo | ||
#docker run -ti --rm -v "${PWD}":/k8sdocs -p 4000:4000 gcr.io/google-samples/k8sdocs:1.1 |
Oops, something went wrong.