1 .PHONY: deploy test shell
 
   8 deploy: src/wolnelektury/localsettings.py
 
   9         pip install -r requirements/requirements.txt
 
  10         src/manage.py migrate --noinput
 
  11         src/manage.py update_counters
 
  12         src/manage.py collectstatic --noinput
 
  18         python -Wall -m coverage run --branch --source='.' ./manage.py test; true
 
  19         coverage html -d ../htmlcov.new
 
  21         mv ../htmlcov.new ../htmlcov
 
  27         UID=$(UID) GID=$(GID) docker-compose run --rm dev bash
 
  31         UID=$(UID) GID=$(GID) docker-compose build dev