Dashboard v2.0.0: #5

Open
alu wants to merge 32 commits from v2.0.0 into main
4 changed files with 589 additions and 4 deletions
Showing only changes of commit 8710da338b - Show all commits
+3
View File
@@ -1,3 +1,6 @@
[submodule "proxmoxaas-common-lib"] [submodule "proxmoxaas-common-lib"]
path = proxmoxaas-common-lib path = proxmoxaas-common-lib
url = https://git.tronnet.net/tronnet/proxmoxaas-common-lib url = https://git.tronnet.net/tronnet/proxmoxaas-common-lib
[submodule "WFA-JS"]
path = WFA-JS
url = https://git.tronnet.net/alu/WFA-JS
+6 -2
View File
@@ -1,11 +1,15 @@
.PHONY: build test clean .PHONY: build test clean wfa-js
build: clean build: clean wfa-js
@echo "======================== Building Binary =======================" @echo "======================== Building Binary ======================="
# resolve symbolic links in web by copying it into dist/web/ # resolve symbolic links in web by copying it into dist/web/
cp -rL web/ dist/web/ cp -rL web/ dist/web/
CGO_ENABLED=0 go build -tags release -ldflags="-s -w" -v -o dist/ . CGO_ENABLED=0 go build -tags release -ldflags="-s -w" -v -o dist/ .
wfa-js:
$(MAKE) -C WFA-JS
cp -f WFA-JS/dist/* web/modules
test: clean test: clean
go run . go run .
Submodule
+1
Submodule WFA-JS added at 05cd2d79df
+579 -2
View File
File diff suppressed because one or more lines are too long