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

Draft communication with WA server.

parent b511cb71
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+28 −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_wa_client/

# generated Program.cs
#Program.cs

# backup-files
*.bak

.gitmodules

0 → 100644
+3 −0
Original line number Diff line number Diff line
[submodule "openapi"]
	path = openapi
	url = https://forge.etsi.org/rep/arf/openapi.git
+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

Notices.txt

0 → 100644
+3 −0
Original line number Diff line number Diff line
The python lib for the World Storage mustbe installed from the GitLab repo:

https://labs.etsi.org/rep/arf/world-storage-api-helpers/world-storage-python-client
 No newline at end of file

openapi @ 073fd721

Original line number Diff line number Diff line
Subproject commit 073fd7213fd9e6ebc2f8a47d628a650de30c8bc4
Loading