2024-04-28 12:12:00 +03:00
|
|
|
.PHONY: run test build frontend backend
|
|
|
|
|
2024-04-28 12:06:34 +03:00
|
|
|
run:
|
2024-04-28 12:12:00 +03:00
|
|
|
@echo 'Not implemented'
|
2024-04-28 12:06:34 +03:00
|
|
|
|
|
|
|
test:
|
2024-04-28 12:12:00 +03:00
|
|
|
@python3 -m unittest discover -vcs ./backend
|
2024-04-28 12:06:34 +03:00
|
|
|
|
|
|
|
build:
|
|
|
|
make frontend
|
|
|
|
make backend
|
|
|
|
|
|
|
|
frontend:
|
2024-04-28 12:12:00 +03:00
|
|
|
@cd frontend && echo 'Not implemented'
|
2024-04-28 12:06:34 +03:00
|
|
|
|
|
|
|
backend:
|
2024-04-28 12:12:00 +03:00
|
|
|
@cd backend && echo 'Not implemented'
|