##// END OF EJS Templates
dev(dev-shell): improvements to dev shell env
super-admin -
r1182:e116091a default
parent child Browse files
Show More
@@ -1,137 +1,137 b''
1 1 # required for pushd to work..
2 2 SHELL = /bin/bash
3 3
4 4
5 5 # set by: PATH_TO_OUTDATED_PACKAGES=/some/path/outdated_packages.py
6 6 OUTDATED_PACKAGES = ${PATH_TO_OUTDATED_PACKAGES}
7 7
8 8 .PHONY: clean
9 9 ## Cleanup compiled and cache py files
10 10 clean:
11 11 make test-clean
12 12 find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';'
13 13 find . -type d -name "build" -prune -exec rm -rf '{}' ';'
14 14
15 15
16 16 .PHONY: test
17 17 ## run test-clean and tests
18 18 test:
19 19 make test-clean
20 20 make test-only
21 21
22 22
23 23 .PHONY: test-clean
24 24 ## run test-clean and tests
25 25 test-clean:
26 26 rm -rf coverage.xml htmlcov junit.xml pylint.log result
27 27 find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';'
28 28 find . -type f \( -iname '.coverage.*' \) -exec rm '{}' ';'
29 29
30 30
31 31 .PHONY: test-only
32 32 ## Run tests only without cleanup
33 33 test-only:
34 34 PYTHONHASHSEED=random \
35 35 py.test -x -vv -r xw -p no:sugar \
36 36 --cov-report=term-missing --cov-report=html \
37 37 --cov=vcsserver vcsserver
38 38
39 39
40 40 .PHONY: ruff-check
41 41 ## run a ruff analysis
42 42 ruff-check:
43 43 ruff check --ignore F401 --ignore I001 --ignore E402 --ignore E501 --ignore F841 --exclude rhodecode/lib/dbmigrate --exclude .eggs --exclude .dev .
44 44
45 45
46 46 .PHONY: pip-packages
47 47 ## Show outdated packages
48 48 pip-packages:
49 49 python ${OUTDATED_PACKAGES}
50 50
51 51
52 52 .PHONY: build
53 53 ## Build sdist/egg
54 54 build:
55 55 python -m build
56 56
57 57
58 58 .PHONY: dev-sh
59 59 ## make dev-sh
60 60 dev-sh:
61 61 sudo echo "deb [trusted=yes] https://apt.fury.io/rsteube/ /" | sudo tee -a "/etc/apt/sources.list.d/fury.list"
62 62 sudo apt-get update
63 63 sudo apt-get install -y zsh carapace-bin
64 rm -rf /home/rhodecode/.oh-my-zsh
64 65 curl https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
65 66 echo "source <(carapace _carapace)" > /home/rhodecode/.zsrc
66 67 PROMPT='%(?.%F{green}√.%F{red}?%?)%f %B%F{240}%1~%f%b %# ' zsh
67 68
68 69 .PHONY: dev-env
69 70 ## make dev-env based on the requirements files and install develop of packages
70 71 ## Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y
71 72 dev-env:
72 73 pip install build virtualenv
73 74 pip wheel --wheel-dir=/home/rhodecode/.cache/pip/wheels -r requirements.txt -r requirements_test.txt -r requirements_debug.txt
74 75 pip install --no-index --find-links=/home/rhodecode/.cache/pip/wheels -r requirements.txt -r requirements_test.txt -r requirements_debug.txt
75 76 pip install -e .
76 77
77 78
78 79 .PHONY: sh
79 80 ## shortcut for make dev-sh dev-env
80 81 sh:
81 make dev-sh
82 make dev-env
82 (make dev-env; make dev-sh)
83 83
84 84
85 85 .PHONY: dev-srv
86 86 ## run develop server instance, docker exec -it $(docker ps -q --filter 'name=dev-enterprise-ce') /bin/bash
87 87 dev-srv:
88 88 pserve --reload .dev/dev.ini
89 89
90 90
91 91 .PHONY: dev-srv-g
92 92 ## run gunicorn multi process workers
93 93 dev-srv-g:
94 94 gunicorn --workers=4 --paste .dev/dev.ini --bind=0.0.0.0:10010 --config=.dev/gunicorn_config.py
95 95
96 96
97 97 # Default command on calling make
98 98 .DEFAULT_GOAL := show-help
99 99
100 100 .PHONY: show-help
101 101 show-help:
102 102 @echo "$$(tput bold)Available rules:$$(tput sgr0)"
103 103 @echo
104 104 @sed -n -e "/^## / { \
105 105 h; \
106 106 s/.*//; \
107 107 :doc" \
108 108 -e "H; \
109 109 n; \
110 110 s/^## //; \
111 111 t doc" \
112 112 -e "s/:.*//; \
113 113 G; \
114 114 s/\\n## /---/; \
115 115 s/\\n/ /g; \
116 116 p; \
117 117 }" ${MAKEFILE_LIST} \
118 118 | LC_ALL='C' sort --ignore-case \
119 119 | awk -F '---' \
120 120 -v ncol=$$(tput cols) \
121 121 -v indent=19 \
122 122 -v col_on="$$(tput setaf 6)" \
123 123 -v col_off="$$(tput sgr0)" \
124 124 '{ \
125 125 printf "%s%*s%s ", col_on, -indent, $$1, col_off; \
126 126 n = split($$2, words, " "); \
127 127 line_length = ncol - indent; \
128 128 for (i = 1; i <= n; i++) { \
129 129 line_length -= length(words[i]) + 1; \
130 130 if (line_length <= 0) { \
131 131 line_length = ncol - indent - length(words[i]) - 1; \
132 132 printf "\n%*s ", -indent, " "; \
133 133 } \
134 134 printf "%s ", words[i]; \
135 135 } \
136 136 printf "\n"; \
137 137 }'
General Comments 0
You need to be logged in to leave comments. Login now