##// END OF EJS Templates
fix(channelstream): fixed history writing
fix(channelstream): fixed history writing

File last commit:

r5194:61b5d6b2 default
r5208:d460d319 default
Show More
Makefile
191 lines | 5.1 KiB | text/x-makefile | MakefileLexer
makefile: updated with latest changes, added gunicorn serve
r5036 # required for pushd to work..
deps: make dev-env build faster and bump all libs to latest versions
r5013 SHELL = /bin/bash
makefile: updated makefile to standard layout
r1220
makefile: updated with latest changes, added gunicorn serve
r5036
makefile: remove nix stuff, added self-document version
r4899 # set by: PATH_TO_OUTDATED_PACKAGES=/some/path/outdated_packages.py
OUTDATED_PACKAGES = ${PATH_TO_OUTDATED_PACKAGES}
project: added all source files and assets
r1
NODE_PATH=./node_modules
js: use builtin packages for binaries...
r3162 WEBPACK=./node_binaries/webpack
GRUNT=./node_binaries/grunt
makefile: updated makefile to standard layout
r1220
makefile: remove nix stuff, added self-document version
r4899 .PHONY: clean
## Cleanup compiled and cache py files
makefile: updated makefile to standard layout
r1220 clean:
make test-clean
makefile: also cleanup .orig files
r3476 find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';'
makefile: always cleanup build dir
r5105 find . -type d -name "build" -prune -exec rm -rf '{}' ';'
makefile: remove nix stuff, added self-document version
r4899
makefile: added some helpers
r5181
makefile: remove nix stuff, added self-document version
r4899 .PHONY: test
## run test-clean and tests
makefile: updated makefile to standard layout
r1220 test:
make test-clean
make test-only
makefile: added commands to quickly build docs.
r13
makefile: remove nix stuff, added self-document version
r4899
makefile: updated with latest changes, added gunicorn serve
r5036 .PHONY: test-clean
makefile: remove nix stuff, added self-document version
r4899 ## run test-clean and tests
makefile: updated makefile to standard layout
r1220 test-clean:
rm -rf coverage.xml htmlcov junit.xml pylint.log result
find . -type d -name "__pycache__" -prune -exec rm -rf '{}' ';'
makefile: cleanup coverage files for test cleanup
r3845 find . -type f \( -iname '.coverage.*' \) -exec rm '{}' ';'
makefile: updated makefile to standard layout
r1220
makefile: remove nix stuff, added self-document version
r4899
.PHONY: test-only
## Run tests only without cleanup
makefile: updated makefile to standard layout
r1220 test-only:
tests: allow running tests via make file on different databases
r2100 PYTHONHASHSEED=random \
makefile: remove nix stuff, added self-document version
r4899 py.test -x -vv -r xw -p no:sugar \
--cov-report=term-missing --cov-report=html \
--cov=rhodecode rhodecode
tests: allow running tests via make file on different databases
r2100
makefile: updated with latest changes, added gunicorn serve
r5036
makefile: remove nix stuff, added self-document version
r4899 .PHONY: test-only-mysql
## run tests against mysql
tests: allow running tests via make file on different databases
r2100 test-only-mysql:
PYTHONHASHSEED=random \
makefile: remove nix stuff, added self-document version
r4899 py.test -x -vv -r xw -p no:sugar \
--cov-report=term-missing --cov-report=html \
makefile: use utf8 for mysql tests
r3976 --ini-config-override='{"app:main": {"sqlalchemy.db1.url": "mysql://root:qweqwe@localhost/rhodecode_test?charset=utf8"}}' \
makefile: remove nix stuff, added self-document version
r4899 --cov=rhodecode rhodecode
tests: allow running tests via make file on different databases
r2100
makefile: remove nix stuff, added self-document version
r4899 .PHONY: test-only-postgres
## run tests against postgres
tests: allow running tests via make file on different databases
r2100 test-only-postgres:
PYTHONHASHSEED=random \
makefile: remove nix stuff, added self-document version
r4899 py.test -x -vv -r xw -p no:sugar \
--cov-report=term-missing --cov-report=html \
tests: allow running tests via make file on different databases
r2100 --ini-config-override='{"app:main": {"sqlalchemy.db1.url": "postgresql://postgres:qweqwe@localhost/rhodecode_test"}}' \
makefile: remove nix stuff, added self-document version
r4899 --cov=rhodecode rhodecode
tests: allow running tests via make file on different databases
r2100
makefile: added ruff check
r5176 .PHONY: ruff-check
## run a ruff analysis
ruff-check:
ruff check --ignore F401 --ignore I001 --ignore E402 --ignore E501 --ignore F841 --exclude rhodecode/lib/dbmigrate --exclude .eggs --exclude .dev .
makefile: remove nix stuff, added self-document version
r4899 .PHONY: docs
## build docs
makefile: added commands to quickly build docs.
r13 docs:
feat(docs): new docs build logic...
r5193 (cd docs; docker run --rm -v $(PWD):/project --workdir=/project/docs sphinx-doc-build-rc make clean html)
project: added all source files and assets
r1
makefile: remove nix stuff, added self-document version
r4899
.PHONY: docs-clean
## Cleanup docs
makefile: added commands to quickly build docs.
r13 docs-clean:
feat(docs): new docs build logic...
r5193 (cd docs; docker run --rm -v $(PWD):/project --workdir=/project/docs sphinx-doc-build-rc make clean)
makefile: added commands to quickly build docs.
r13
makefile: remove nix stuff, added self-document version
r4899
.PHONY: docs-cleanup
## Cleanup docs
make: updated docs make commands.
r1214 docs-cleanup:
feat(docs): new docs build logic...
r5193 (cd docs; docker run --rm -v $(PWD):/project --workdir=/project/docs sphinx-doc-build-rc make cleanup)
make: updated docs make commands.
r1214
makefile: remove nix stuff, added self-document version
r4899
.PHONY: web-build
## Build JS packages static/js
makefile: mark huli image to generate grunt files
r5118 # https://hub.docker.com/r/huli/grunt
project: added all source files and assets
r1 web-build:
NODE_PATH=$(NODE_PATH) $(GRUNT)
packages: removed nix files
r4904 # check required files
STATIC_CHECK="/robots.txt /502.html \
/js/scripts.min.js /js/rhodecode-components.js \
/css/style.css /css/style-polymer.css /css/style-ipython.css"
for file in $STATIC_CHECK;
do
if [ ! -f rhodecode/public/$file ]; then
echo "Missing $file expected after web-build"
exit 1
fi
done
makefile: added some handly functions for package generation
r3531
makefile: remove nix stuff, added self-document version
r4899 .PHONY: pip-packages
makefile: updated with latest changes, added gunicorn serve
r5036 ## Show outdated packages
makefile: added outdated packages helper
r4253 pip-packages:
python ${OUTDATED_PACKAGES}
makefile: remove nix stuff, added self-document version
r4899
makefile: updated with latest changes, added gunicorn serve
r5036 .PHONY: build
## Build sdist/egg
build:
python -m build
makefile: remove nix stuff, added self-document version
r4899
dev(makefile): added dev shell prompt
r5191 .PHONY: dev-sh
## make dev-sh
dev-sh:
dev(shell): make the shell use zshrc and better autocomplete
r5194 sudo echo "deb [trusted=yes] https://apt.fury.io/rsteube/ /" | sudo tee -a "/etc/apt/sources.list.d/fury.list"
dev(makefile): added dev shell prompt
r5191 sudo apt-get update
dev(shell): make the shell use zshrc and better autocomplete
r5194 sudo apt-get install -y zsh carapace-bin
dev(makefile): added dev shell prompt
r5191 curl https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
dev(shell): make the shell use zshrc and better autocomplete
r5194 echo "source <(carapace _carapace)" > /home/rhodecode/.zsrc
dev(makefile): added dev shell prompt
r5191 PROMPT='%(?.%F{green}√.%F{red}?%?)%f %B%F{240}%1~%f%b %# ' zsh
makefile: added dev-env command
r4905 .PHONY: dev-env
## make dev-env based on the requirements files and install develop of packages
makefile: added some helpers
r5181 ## Cleanup: pip freeze | grep -v "^-e" | grep -v "@" | xargs pip uninstall -y
makefile: added dev-env command
r4905 dev-env:
makefile: updated with latest changes, added gunicorn serve
r5036 pip install build virtualenv
makefile: fixed installing vcsserver for tests
r4967 pushd ../rhodecode-vcsserver/ && make dev-env && popd
makefile: updated with latest changes, added gunicorn serve
r5036 pip wheel --wheel-dir=/home/rhodecode/.cache/pip/wheels -r requirements.txt -r requirements_rc_tools.txt -r requirements_test.txt -r requirements_debug.txt
pip install --no-index --find-links=/home/rhodecode/.cache/pip/wheels -r requirements.txt -r requirements_rc_tools.txt -r requirements_test.txt -r requirements_debug.txt
makefile: added dev-env command
r4905 pip install -e .
makefile: updated with latest changes, added gunicorn serve
r5036
.PHONY: dev-srv
## run develop server instance, docker exec -it $(docker ps -q --filter 'name=dev-enterprise-ce') /bin/bash
dev-srv:
pserve --reload .dev/dev.ini
makefile: added some helpers
r5181
makefile: updated with latest changes, added gunicorn serve
r5036 .PHONY: dev-srv-g
## run gunicorn multi process workers
dev-srv-g:
makefile: added some helpers
r5181 gunicorn --workers=2 --paste .dev/dev.ini --bind=0.0.0.0:10020 --config=.dev/gunicorn_config.py
makefile: updated with latest changes, added gunicorn serve
r5036
makefile: remove nix stuff, added self-document version
r4899 # Default command on calling make
.DEFAULT_GOAL := show-help
makefile: added some handly functions for package generation
r3531
makefile: remove nix stuff, added self-document version
r4899 .PHONY: show-help
show-help:
@echo "$$(tput bold)Available rules:$$(tput sgr0)"
@echo
@sed -n -e "/^## / { \
h; \
s/.*//; \
:doc" \
-e "H; \
n; \
s/^## //; \
t doc" \
-e "s/:.*//; \
G; \
s/\\n## /---/; \
s/\\n/ /g; \
p; \
}" ${MAKEFILE_LIST} \
| LC_ALL='C' sort --ignore-case \
| awk -F '---' \
-v ncol=$$(tput cols) \
-v indent=19 \
-v col_on="$$(tput setaf 6)" \
-v col_off="$$(tput sgr0)" \
'{ \
printf "%s%*s%s ", col_on, -indent, $$1, col_off; \
n = split($$2, words, " "); \
line_length = ncol - indent; \
for (i = 1; i <= n; i++) { \
line_length -= length(words[i]) + 1; \
if (line_length <= 0) { \
line_length = ncol - indent - length(words[i]) - 1; \
printf "\n%*s ", -indent, " "; \
} \
printf "%s ", words[i]; \
} \
printf "\n"; \
}'