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

New API generated code using abstract class instead of virtual.

New folder for all custom classes.
batch file to quickly start the creation of the docker and docker-compose.
parent c4c1deeb
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
## Ignore .openapi-generator Folder
##
.openapi-generator/
server/src/Org.OpenAPITools/.gitignore
server/worldstorage/src/ETSI.ARF.OpenAPI.WorldStorage/.gitignore

# Visual Studio cache/options directory
.vs/
@@ -9,6 +9,9 @@ server/src/Org.OpenAPITools/.gitignore
# Visual Studio solution
*.sln

# generated project-files
*.csproj

# build-jobs
build.*

@@ -22,7 +25,7 @@ server/programs/MongoDB/
!server/programs/MongoDB/readme.md

#generated readme
server/README.md
server/worldstorage/README.md

# all generated directories
Attributes/
@@ -36,11 +39,8 @@ OpenAPI/
Properties/
wwwroot/

# generated project-files
*.csproj

# generated Program.cs
Program.cs
#Program.cs

# backup-files
*.bak
+4 −1
Original line number Diff line number Diff line
@@ -2,3 +2,6 @@
	path = arf005
	url = git@forge.etsi.org:arf/arf005.git
	branch = develop
[submodule "openapi"]
	path = openapi
	url = https://forge.etsi.org/rep/arf/openapi.git
+12 −8
Original line number Diff line number Diff line
@@ -22,16 +22,20 @@
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md

#
# ETSI - ISG - ARF
#
**\ETSI.ARF.OpenAPI.WorldStorage.csproj

# Modules to initialize World Storage database, server....
**/Program.cs
**/Startup.cs
**/appsettings.json
**/Dockerfile
**/docker-compose.yml
**/.openapi-generator-ignore

**/appsettings.json

# ARF
# Implementation of REST request and database functionalities
#
**/ControllersImpl
**/Services
**/ETSI-ARF

# Design of some web pages
**/wwwroot/portal
**/wwwroot/index.html
 No newline at end of file

arf005 @ 533b9d31

Original line number Diff line number Diff line
Subproject commit 533b9d3198b772c7b628b0ab0e0a144b89966b46
+2 −0
Original line number Diff line number Diff line
cd server\worldstorage\src\ETSI.ARF.OpenAPI.WorldStorage
docker build -t etsi.arf.openapi.worldstorage .
 No newline at end of file
Loading