Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 832 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 832 Bytes

Cloud SDK Templates repo

This repository contains templates to generate Fenrir Cloud SDK from the OpenAPI 3.0 Specification

Currently generated SDKs

Generating all SDKs

To generate csharp SDKs:

export SDK=csharp  # csharp, python

docker run -v ${PWD}:/local openapitools/openapi-generator-cli generate \
    -g ${SDK} \
    -c /local/configs/${SDK}.yaml \
    -t /local/templates/${SDK} \
    --openapi-normalizer SET_TAGS_FOR_ALL_OPERATIONS=fenrir \
    --ignore-file-override=/local/${SDK}.openapi-generator-ignore

Contributing guide

Please inspect the respective README files for each respective SDK template.