Skip to content
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

[DRE-94] Change config for publisher #38

Merged
merged 9 commits into from
Jun 9, 2023
Prev Previous commit
Next Next commit
Change output folder
  • Loading branch information
ezerozen committed Jun 5, 2023
commit 5a1938c5f47704b1b265f58ba85544be47206e10
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python:
npx @openapitools/openapi-generator-cli generate \
-i api.yaml \
-g python-nextgen \
-o conekta-python \
-o ../conekta-python \
-c config-python.json \
--global-property modelTests=false

Expand All @@ -19,7 +19,7 @@ java:
npx @openapitools/openapi-generator-cli generate \
-i api.yaml \
-g java \
-o ct-conekta-java \
-o ../ct-conekta-java \
-c config-java.json \
--global-property modelTests=false \
--additional-properties=hideGenerationTimestamp=true
Expand All @@ -28,7 +28,7 @@ go:
npx @openapitools/openapi-generator-cli generate \
-i api.yaml \
-g go \
-o conekta-go \
-o ../conekta-go \
-c config-go.json \
--global-property apiTests=false

Expand All @@ -38,7 +38,7 @@ ruby:
npx @openapitools/openapi-generator-cli generate \
-i api.yaml \
-g ruby \
-o conekta-ruby \
-o ../conekta-ruby \
-c config-ruby.json

csharp:
Expand All @@ -57,14 +57,14 @@ php:
npx @openapitools/openapi-generator-cli generate \
-i api.yaml \
-g php \
-o conekta-php \
-o ../conekta-php \
-c config-php.json

node:
npx @openapitools/openapi-generator-cli generate \
-i api.yaml \
-g typescript-fetch \
-o conekta-node \
-o ../conekta-node \
-c config-node.json

update-readme:
Expand Down