* ignore translation and log files * add quart-babel * build and install translation files * don't export the web-ui port 8127 - for security reason the user should use the HA ingress and not the direkt access to the web dashboard * set 'lang' in html tag
19 lines
514 B
Makefile
19 lines
514 B
Makefile
.PHONY: build babel clean addon-dev addon-debug addon-rc addon-rel debug dev preview rc rel check-docker-compose install
|
|
|
|
babel debug dev preview rc rel:
|
|
$(MAKE) -C app $@
|
|
|
|
clean build:
|
|
$(MAKE) -C ha_addons $@
|
|
|
|
addon-dev addon-debug addon-rc addon-rel:
|
|
$(MAKE) -C app babel
|
|
$(MAKE) -C ha_addons $(patsubst addon-%,%,$@)
|
|
|
|
check-docker-compose:
|
|
docker-compose config -q
|
|
|
|
install:
|
|
python3 -m pip install --upgrade pip
|
|
python3 -m pip install -r requirements.txt
|
|
python3 -m pip install -r requirements-test.txt
|