makefile: added dev-env command

This commit is contained in:
RhodeCode Admin 2023-03-06 14:57:05 +01:00
parent b712900e53
commit 4fd59e6128

View file

@ -103,6 +103,12 @@ sdist:
python setup.py sdist
.PHONY: dev-env
## make dev-env based on the requirements files and install develop of packages
dev-env:
pip install -r requirements.txt -r requirements_debug.txt -r requirements_test.txt
pip install -e .
# Default command on calling make
.DEFAULT_GOAL := show-help