# HG changeset patch # User RhodeCode Admin # Date 2023-11-07 08:42:22 # Node ID 5ae640bb1ea5022fcdf7c07f360abc1fcf3cb8d8 # Parent 9f61014703b4d4ad6735d5124fcdb4820b14b248 dev(makefile): added dev shell prompt diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -115,6 +115,14 @@ build: python -m build +.PHONY: dev-sh +## make dev-sh +dev-sh: + sudo apt-get update + sudo apt-get install -y zsh + curl https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh + PROMPT='%(?.%F{green}√.%F{red}?%?)%f %B%F{240}%1~%f%b %# ' zsh + .PHONY: dev-env ## make dev-env based on the requirements files and install develop of packages ## Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y