mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* no longer redacts GETing proxied AM configs * removes unused testfile * testware fix * consistently roundtrips yaml<>json and doesnt redact secrets * lint
25 lines
709 B
Makefile
25 lines
709 B
Makefile
.DEFAULT_GOAL := openapi
|
|
|
|
API_DIR = definitions
|
|
GO_PKG_FILES = $(shell find $(API_DIR) -name *.go -print)
|
|
SWAGGER_TAG ?= latest
|
|
|
|
PATH_DOWN = pkg/services/ngalert/api/tooling
|
|
PATH_UP = ../../../../..
|
|
|
|
spec.json: $(GO_PKG_FILES)
|
|
# this is slow because this image does not use the cache
|
|
# https://github.com/go-swagger/go-swagger/blob/v0.27.0/Dockerfile#L5
|
|
docker run --rm -it \
|
|
-w /src/$(PATH_DOWN) \
|
|
-v $$(pwd)/$(PATH_UP):/src \
|
|
quay.io/goswagger/swagger:$(SWAGGER_TAG) \
|
|
generate spec -m -o $@
|
|
|
|
post.json: spec.json
|
|
go run cmd/clean-swagger/main.go -if $(<) -of $@
|
|
|
|
.PHONY: openapi
|
|
openapi: post.json
|
|
docker run --rm -p 80:8080 -v $$(pwd):/tmp -e SWAGGER_FILE=/tmp/$(<) swaggerapi/swagger-editor
|