1
e11sync/Makefile
Motiejus Jakštys 50c34aa922 replace gunicorn with uwsgi
has an easier-to-work-with prometheus.
2024-01-15 16:14:46 +02:00

21 lines
384 B
Makefile

# unit tests independent of your environment. Aspires to be the default CI job.
.PHONY: check
test:
nix flake check
.PHONY: format
format:
autopep8 -a -a --recursive --in-place --exclude app/signup/migrations app
.PHONY: run
run:
app/manage.py runserver
.PHONY: run-backend
run-backend:
nix run .#e11sync-backend
.PHONY: run-frontend
run-frontend:
nix run .#e11sync-frontend