# HG changeset patch # User RhodeCode Admin # Date 2023-03-06 13:57:05 # Node ID cba0a015bba816eb71712d880e58460d55b6d642 # Parent 603f706502d362a0db7b3945c2fa57b12ef5e6cc makefile: added dev-env command diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -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