-
Notifications
You must be signed in to change notification settings - Fork 3
oas_docsからopenapiに移行しました。 #1967
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: gm3/develop
Are you sure you want to change the base?
Changes from all commits
ef71cc9
c69160e
54e930a
72a2344
9e47562
953c6d3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1,4 +1,5 @@ | ||||||||
| --- | ||||||||
| openapi: 3.0.0 | ||||||||
| info: | ||||||||
| title: OAS API Document Title | ||||||||
| description: |- | ||||||||
|
|
@@ -14,3 +15,15 @@ info: | |||||||
| name: '' | ||||||||
| url: '' | ||||||||
| version: 1.0.0 | ||||||||
| externalDocs: | ||||||||
| description: '' | ||||||||
| url: '' | ||||||||
|
Comment on lines
+18
to
+20
|
||||||||
| servers: | ||||||||
| - url: http://localhost:3000 | ||||||||
| description: localhost | ||||||||
| tags: | ||||||||
| - name: venue_map | ||||||||
| description: venue_map description | ||||||||
| externalDocs: | ||||||||
| description: description | ||||||||
| url: url | ||||||||
|
Comment on lines
+27
to
+29
|
||||||||
| externalDocs: | |
| description: description | |
| url: url |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| #!/usr/bin/env bash | ||
| set -euo pipefail | ||
|
|
||
| ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" | ||
| IMAGE="${OPENAPI_GENERATOR_IMAGE:-openapitools/openapi-generator-cli:v7.5.0}" | ||
|
|
||
| if [ $# -eq 0 ]; then | ||
| set -- "help" | ||
| fi | ||
|
|
||
| exec docker run --rm \ | ||
| -u "$(id -u):$(id -g)" \ | ||
| -v "${ROOT_DIR}:/workspace" \ | ||
| -w /workspace \ | ||
| "${IMAGE}" "$@" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
このドキュメントちょっと混乱しちゃうかも😵💫 実際のMakefileには
openapi-cliタスクがあるけど、例としてcmd=\"version\"って書いてあるのに、実際に実行するとmake openapi-cli cmd=\"version\"になるから、具体例をもっと明確にした方がいいっぽい!💡