+.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
+
+