Several features added

Login/logout/auth, fan settling, period selection, log data, color themes, automatic logout + user logout if window is closed, alarm limits (colors) to monitor fields
This commit is contained in:
Miisa Ekholm
2022-10-25 21:20:56 +03:00
parent 9e3d953b9e
commit 2cb3347da8
466 changed files with 63934 additions and 1631 deletions

19
WebUI/node_modules/bcrypt/Makefile generated vendored Normal file
View File

@@ -0,0 +1,19 @@
TESTS = test/*.js
all: test
build: clean compile
compile:
npm install .
npm run install
test: build
@./node_modules/nodeunit/bin/nodeunit \
$(TESTS)
clean:
rm -Rf lib/bindings/
.PHONY: clean test build