-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
30 lines (25 loc) · 894 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
gen-stripe:
openapi-generator generate \
--skip-validate-spec \
-i https://raw.githubusercontent.com/stripe/openapi/master/openapi/spec3.yaml \
-g elixir \
-o ./codegen/stripe/package-1
gen-plaid:
openapi-generator generate \
--skip-validate-spec \
-i https://raw.githubusercontent.com/plaid/plaid-openapi/master/2020-09-14.yml \
-g elixir \
-o ./codegen/plaid/package-1
gen-openai:
openapi-generator generate \
--skip-validate-spec \
-i https://raw.githubusercontent.com/openai/openai-openapi/master/openapi.yaml \
-g elixir \
-o ./codegen/openai/package-1
gen-github:
openapi-generator generate \
--skip-validate-spec \
-i https://raw.githubusercontent.com/github/rest-api-description/main/descriptions/api.github.com/api.github.com.yaml \
-g elixir \
-o ./codegen/github/package-1
gen-all: gen-stripe gen-plaid gen-openapi gen-github