This commit is contained in:
ge
2023-02-19 01:32:35 +03:00
commit e80a3b1916
20 changed files with 2542 additions and 0 deletions

12
Makefile Normal file
View File

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