X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/f083ac4cb1be9bb6c14ce2045be90e0cdf23508e..HEAD:/Makefile diff --git a/Makefile b/Makefile index 79fa8f6f5..77d345df2 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,11 @@ -.PHONY: deploy test +.PHONY: deploy test shell + + +UID != id -u +GID != id -g deploy: src/wolnelektury/localsettings.py - git submodule update --init pip install -r requirements/requirements.txt src/manage.py migrate --noinput src/manage.py update_counters @@ -12,10 +15,17 @@ deploy: src/wolnelektury/localsettings.py .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 + + +shell: + UID=$(UID) GID=$(GID) docker-compose run --rm dev bash + + +build: + UID=$(UID) GID=$(GID) docker-compose build dev