Skip to content

Commit

Permalink
Merge branch 'main' of github.com:binwiederhier/ntfy
Browse files Browse the repository at this point in the history
  • Loading branch information
binwiederhier committed Nov 19, 2023
2 parents f9a411c + 0b41356 commit 497f45e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
MAKEFLAGS := --jobs=1
PYTHON := python3
PIP := pip3
VERSION := $(shell git describe --tag)
COMMIT := $(shell git rev-parse --short HEAD)

Expand Down Expand Up @@ -115,16 +117,16 @@ build-deps-ubuntu:
docs: docs-deps docs-build

docs-venv: .PHONY
python3 -m venv ./venv
$(PYTHON) -m venv ./venv

docs-build: docs-venv
(. venv/bin/activate && mkdocs build)
(. venv/bin/activate && $(PYTHON) -m mkdocs build)

docs-deps: docs-venv
(. venv/bin/activate && pip3 install -r requirements.txt)
(. venv/bin/activate && $(PIP) install -r requirements.txt)

docs-deps-update: .PHONY
(. venv/bin/activate && pip3 install -r requirements.txt --upgrade)
(. venv/bin/activate && $(PIP) install -r requirements.txt --upgrade)


# Web app
Expand Down

0 comments on commit 497f45e

Please sign in to comment.