Add make target for swagger UI generator

This commit is contained in:
Jan Eitzinger 2024-06-26 05:41:42 +02:00
parent 5c5484b4d2
commit 552da005dc
Signed by: moebiusband
GPG Key ID: 2574BA29B90D6DD5

View File

@ -28,7 +28,7 @@ SVELTE_SRC = $(wildcard $(FRONTEND)/src/*.svelte) \
$(wildcard $(FRONTEND)/src/plots/*.svelte) \
$(wildcard $(FRONTEND)/src/joblist/*.svelte)
.PHONY: clean distclean test tags frontend $(TARGET)
.PHONY: clean distclean test tags frontend swagger $(TARGET)
.NOTPARALLEL:
@ -40,6 +40,11 @@ frontend:
$(info ===> BUILD frontend)
cd web/frontend && npm install && npm run build
swagger:
$(info ===> GENERATE swagger)
@go run github.com/swaggo/swag/cmd/swag init -d ./internal/api,./pkg/schema -g rest.go -o ./api
@mv ./api/docs.go ./internal/api/docs.go
clean:
$(info ===> CLEAN)
@go clean