-deploy:
- rsync -vzr --delete --exclude="*.pyc" --exclude="/lxml" --exclude=".svn" --exclude="/lektury.sqlite" --exclude="/settings.py" . zuber@continental.dreamhost.com:django_projects/wolnelektury
- ssh zuber@continental.dreamhost.com 'touch ~/wolnelektury.stepniowski.com/dispatch.fcgi'
\ No newline at end of file
+.PHONY: deploy test shell
+
+
+UID != id -u
+GID != 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
+ 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