X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4298f7948e8963176debf5877fce30c49ae4e3ad..4cc06fc092836d96eb52ac12c691f1baa41f04b3:/Makefile diff --git a/Makefile b/Makefile index 5ef3ba7e4..98a68987c 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,42 @@ +.PHONY: deploy test up down build shell logs restart + + +UID := $(shell id -u) +GID := $(shell id -g) + + +deploy: src/wolnelektury/localsettings.py + pip install -r requirements/requirements.txt + src/manage.py migrate --noinput + src/manage.py update_counters + src/manage.py collectstatic --noinput + + .ONESHELL: test: cd src - coverage run --branch --source='.' ./manage.py test; true - rm -rf ../htmlcov + python -Wall -m coverage run --branch --source='.' ./manage.py test; true coverage html -d ../htmlcov.new rm -rf ../htmlcov mv ../htmlcov.new ../htmlcov coverage report rm .coverage + + +up: + UID=$(UID) GID=$(GID) docker compose up --build -d + +down: + docker compose down + +build: + UID=$(UID) GID=$(GID) docker compose build + +shell: + UID=$(UID) GID=$(GID) docker compose run --rm web bash + +logs: + docker compose logs -f + +restart: + docker compose restart