Skip to content

Commit d63056a

Browse files
CLOUDP-262012: Convert from OpenAPI Spec to Postman Collection (#83)
1 parent 43cab9d commit d63056a

File tree

6 files changed

+1492
-1
lines changed

6 files changed

+1492
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
# We don't want to commit env variables
1313
*.env
1414

15+
/tools/postman/openapi
16+
/tools/postman/node_modules
17+
1518
# Tool generated files
1619
*.idea
1720
*.vscode

tools/postman/Makefile

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
export OPENAPI_FOLDER=./openapi
2+
export TMP_FOLDER=./tmp
3+
4+
default: build
25

36
.PHONY: fetch_openapi
47
fetch_openapi:
58
./scripts/fetch.sh
9+
10+
.PHONY: convert_collection
11+
convert_collection:
12+
./scripts/convert-to-collection.sh
13+
14+
.PHONY: build
15+
build: fetch_openapi convert_collection

0 commit comments

Comments
 (0)