-
Notifications
You must be signed in to change notification settings - Fork 280
/
Makefile
44 lines (35 loc) · 1.38 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
SHELL=/bin/bash
CONDA_ENV=galaxyproject-hub
CONDA=$(shell which conda)
ifeq ($(CONDA),)
CONDA=${HOME}/miniconda3/bin/conda
endif
ACTIVATE_ENV = source $(shell dirname $(dir $(CONDA)))/bin/activate $(CONDA_ENV)
OPENSSL_HACK = NODE_OPTIONS=--openssl-legacy-provider
default: help
activate:
echo "$(ACTIVATE_ENV)"
run: ## Launch website
$(ACTIVATE_ENV) && $(OPENSSL_HACK) yarn develop
.PHONY: run
create-env: ## create galaxyproject-hub conda environment
if ${CONDA} env list | grep '^${CONDA_ENV}'; then \
${CONDA} env update -f environment.yml; \
else \
${CONDA} env create --force -f environment.yml; \
fi
.PHONY: create-env
install: create-env ## create galaxyproject-hub conda environment
.PHONY: install
build: ## Build the site once and exit
$(ACTIVATE_ENV) && $(OPENSSL_HACK) yarn build
.PHONY: build
freeze-env:
@conda env export --no-builds -n $(CONDA_ENV) | grep -v "^prefix: "
.PHONY: freeze-env
#check-http-urls: ## check http urls
# $(ACTIVATE_ENV) && htmlproofer ./_site/ --check-html --allow-hash-href --assume-extension --disable-external --url-swap "http\://localhost:https\://usegalaxy-eu.github.io" --enforce-https 2>&1 | grep 'is not' | sed 's/link .*//g' | sort | uniq -c | sort -nk1
#.PHONY: check-http-urls
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: help