fix: added swag command to makefile

This commit is contained in:
2026-08-21 09:18:42 +02:00
parent a8386b741b
commit 53f1e2c642
+5
View File
@@ -77,3 +77,8 @@ clean:
docker: docker:
@echo "Building Docker image for $(APP_NAME):$(VERSION)..." @echo "Building Docker image for $(APP_NAME):$(VERSION)..."
@docker build -t $(APP_NAME):$(VERSION) -t $(APP_NAME):latest . @docker build -t $(APP_NAME):$(VERSION) -t $(APP_NAME):latest .
## swag: Create swagger documentation
swag:
@echo "Creating swagger documentation for $(APP_NAME)"
@swag init -g $(MAIN_DIR)/main.go