Makefile update. (0.28.4)
This commit is contained in:
parent
8ba01dc667
commit
8c53f785cc
1 changed files with 10 additions and 4 deletions
14
Makefile
14
Makefile
|
|
@ -1,4 +1,4 @@
|
||||||
PYTHON_VERSION=3.10
|
PYTHON_VERSION=3.11
|
||||||
#PYTHON_VERSION = $(shell python -V | awk -F ' ' '{print $2}' | awk -F '.' '{print $1 "." $2}')
|
#PYTHON_VERSION = $(shell python -V | awk -F ' ' '{print $2}' | awk -F '.' '{print $1 "." $2}')
|
||||||
|
|
||||||
help:
|
help:
|
||||||
|
|
@ -34,13 +34,19 @@ help:
|
||||||
# make daemon
|
# make daemon
|
||||||
|
|
||||||
daemon:
|
daemon:
|
||||||
PYTHONPATH=$(shell pwd):$(shell pwd)/venv/lib/python$(PYTHON_VRESION)/site-packages/ bin/linspector -d ./etc
|
PYTHONPATH=$(shell pwd):$(shell pwd)/venv/lib/python$(PYTHON_VRESION)/site-packages/ ./bin/linspector -d ./etc
|
||||||
|
|
||||||
follow:
|
follow:
|
||||||
tail -F ./log/linspector.log
|
tail -F ./log/linspector.log
|
||||||
|
|
||||||
run:
|
run:
|
||||||
PYTHONPATH=$(shell pwd):$(shell pwd)/venv/lib/python$(PYTHON_VERSION)/site-packages/ bin/linspector ./etc
|
PYTHONPATH=$(shell pwd):$(shell pwd)/venv/lib/python$(PYTHON_VERSION)/site-packages/ ./bin/linspector ./etc
|
||||||
|
|
||||||
rundev:
|
rundev:
|
||||||
PYTHONPATH=$(shell pwd):$(shell pwd)/venv/lib/python$(PYTHON_VERSION)/site-packages/ bin/linspector ./etc.local
|
PYTHONPATH=$(shell pwd):$(shell pwd)/venv/lib/python$(PYTHON_VERSION)/site-packages/ ./bin/linspector ./etc.dev
|
||||||
|
|
||||||
|
runlocal:
|
||||||
|
PYTHONPATH=$(shell pwd):$(shell pwd)/venv/lib/python$(PYTHON_VERSION)/site-packages/ ./bin/linspector ./etc.local
|
||||||
|
|
||||||
|
runpvt:
|
||||||
|
PYTHONPATH=$(shell pwd):$(shell pwd)/venv/lib/python$(PYTHON_VERSION)/site-packages/ ./bin/linspector ./etc.pvt
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue