musicdlp/Makefile
2024-05-03 20:57:20 +04:00

18 lines
308 B
Makefile

.PHONY: run test build frontend backend
run:
HOST=127.0.0.1 PORT=4009 COOKIES_DIR=cookies python3 ./backend/main.py
test:
@python3 -m unittest discover -vcs ./backend
build:
make frontend
make backend
frontend:
@cd frontend && echo 'Not implemented'
backend:
@cd backend && echo 'Not implemented'