mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 11:27:09 +00:00
17 lines
397 B
Makefile
17 lines
397 B
Makefile
.PHONY: docs
|
|
docs:
|
|
cd docs; make clean; make html; cd ..
|
|
yes 'yes' | env/bin/python manage.py collectstatic
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
prospector
|
|
|
|
.PHONY: staging
|
|
staging:
|
|
env ANSIBLE_STDOUT_CALLBACK=debug ansible-playbook -v -i staging.yml playbook.yml -u jag1e17 -K
|
|
|
|
.PHONY: production
|
|
production:
|
|
env ANSIBLE_STDOUT_CALLBACK=debug ansible-playbook -v -i production.yml playbook.yml -u jag1e17 -K
|