ydl-web-ui/Makefile
2023-02-19 02:36:04 +03:00

13 lines
258 B
Makefile

SRCDIR = web_ui
YDL_API_HOST ?=
css:
npx tailwindcss -i input.css -o $(SRCDIR)/static/style.css --watch
run:
cd $(SRCDIR) && DEBUG=1 YDL_API_HOST=$(YDL_API_HOST) pipenv run python router.py
lint:
pipenv run black $(SRCDIR)
pipenv run pylint $(SRCDIR)