-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (20 loc) · 789 Bytes
/
Makefile
File metadata and controls
22 lines (20 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ruby: smaregi-api.yaml
docker run --rm -v "$(PWD):/local" openapitools/openapi-generator-cli:v5.1.1 generate \
--input-spec /local/smaregi-api.yaml \
--package-name smaregi-api \
--generator-name ruby \
--output /local/ruby
php: smaregi-api.yaml
docker run --rm -v "$(PWD):/local" openapitools/openapi-generator-cli:v5.1.1 generate \
--input-spec /local/smaregi-api.yaml \
--package-name smaregi-api \
--generator-name php \
--output /local/php
rust: smaregi-api.yaml
docker run --rm -v "$(PWD):/local" openapitools/openapi-generator-cli:v5.1.1 generate \
--input-spec /local/smaregi-api.yaml \
--config /local/config.yaml \
--package-name smaregi-api \
--generator-name rust \
--output /local/rust \
--additional-properties=useSingleRequestParameter=true