Commit bfd09f42 authored by Sylvain Renault's avatar Sylvain Renault
Browse files

Base setup to generate the client

parent 2f5197ee
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+27 −0
Original line number Diff line number Diff line
## Ignore .openapi-generator Folder
##
.openapi-generator/
server/worldstorage/src/ETSI.ARF.OpenAPI.WorldStorage/.gitignore

# Visual Studio cache/options directory
.vs/

# Visual Studio solution
*.sln

# generated project-files
*.csproj

# build-jobs
build.*

#!ETSI-ARF

# all generated directories
generated/

# generated Program.cs
#Program.cs

# backup-files
*.bak

.gitmodules

0 → 100644
+4 −0
Original line number Diff line number Diff line
[submodule "openapi"]
	path = openapi
	url = https://forge.etsi.org/rep/arf/openapi.git
	branch = master
 No newline at end of file
+34 −0
Original line number Diff line number Diff line
# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md


**/Dockerfile
**/docker-compose.yml
**/.openapi-generator-ignore


# ARF
# Implementation of REST request
#
**/ETSI-ARF

openapi @ af5fc235

Original line number Diff line number Diff line
Subproject commit af5fc2355f7b03fbc76e9d9e04452044d4b5ca8d

openapitools.json

0 → 100644
+16 −0
Original line number Diff line number Diff line
{
  "$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
  "spaces": 2,
  "generator-cli": {
    "version": "5.3.0",
    "generators":{
      "v1.1": {
     "generatorName": "python",
     "output": "./client/generated",
     "inputSpec": "./openapi/API/worldstorage/worldstorageopenapi.yaml",
     "additionalProperties": {
      }
     }
    }
  }
}