musicdlp/Makefile

21 lines
355 B
Makefile
Raw Normal View History

.PHONY: run test build frontend backend
2024-04-28 12:06:34 +03:00
run:
# See backend/config.py for more fields
HOST=127.0.0.1 PORT=4009 \
COOKIES_DIR=cookies \
python3 ./backend/main.py
2024-04-28 12:06:34 +03:00
test:
@python3 -m unittest discover -vcs ./backend
2024-04-28 12:06:34 +03:00
build:
make frontend
make backend
frontend:
@cd frontend && echo 'Not implemented'
2024-04-28 12:06:34 +03:00
backend:
@cd backend && echo 'Not implemented'