Select Git revision

Martin Weise authored
Makefile 396 B
TAG ?= 1.1
.PHONY: clean
all: build
clean:
rm -rf ./site
install-deps:
sudo pip3 install -r ./requirements.txt
release: install-deps
verify:
sudo nginx -t
build:
mkdocs build
configure:
sudo certbot certonly --standalone --preferred-challenges http -d dbrepo-docs.ossdip.at --agree-tos --keep-until-expiring
deploy:
sudo cp -r ./site/* /usr/share/nginx/html/dbrepo-docs.ossdip.at/