This repository has been archived by the owner on Apr 29, 2022. It is now read-only.
forked from open-life-science/open-life-science.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
55 lines (46 loc) · 1.37 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
CONDA_ENV = open-life-science-website
CONDA = $(shell which conda)
ifeq ($(CONDA),)
CONDA=${HOME}/miniconda3/bin/conda
endif
default: help
clean: ## cleanup the project
@rm -rf _site
@rm -rf .sass-cache
@rm -rf .bundle
@rm -rf vendor
.PHONY: clean
create-env: ## create conda environment
if ${CONDA} env list | grep '^${CONDA_ENV}'; then \
${CONDA} env update -f environment.yml; \
else \
${CONDA} env create -f environment.yml; \
fi
.PHONY: create-env
ACTIVATE_ENV = source $(dir ${CONDA})activate ${CONDA_ENV}
install: clean ## install dependencies
$(ACTIVATE_ENV) && \
gem install bundler && \
bundle install
.PHONY: install
serve: ## run a local server
$(ACTIVATE_ENV) && \
bundle exec jekyll serve
.PHONY: serve
build: clean ## build files but do not run a server (You can specify FLAGS= to pass additional flags to Jekyll)
$(ACTIVATE_ENV) && \
bundle exec jekyll build --strict_front_matter
.PHONY: build
check-html: build ## validate HTML
$(ACTIVATE_ENV) && \
htmlproofer \
--assume-extension \
--http-status-ignore 405,503,999 \
--url-ignore "/.*localhost.*/","/.*gitter\.im.*/" \
--allow-hash-href \
--empty_alt_ignore \
./_site
.PHONY: check-html
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: help