mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-21 19:03:26 +01:00
Merge branch 'main' of github.com:binwiederhier/ntfy
This commit is contained in:
commit
497f45e5cd
1 changed files with 6 additions and 4 deletions
10
Makefile
10
Makefile
|
@ -1,4 +1,6 @@
|
|||
MAKEFLAGS := --jobs=1
|
||||
PYTHON := python3
|
||||
PIP := pip3
|
||||
VERSION := $(shell git describe --tag)
|
||||
COMMIT := $(shell git rev-parse --short HEAD)
|
||||
|
||||
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue