From 56f7cf69678dc55af6fcbf2a3c7e3a45aea0c2c9 Mon Sep 17 00:00:00 2001 From: Nathan Chambron Date: Thu, 13 Jan 2022 15:21:24 +0100 Subject: [PATCH] add readme for implementation and update .gitignore --- .gitignore | 4 ++++ EtsiServerImpl/README.md | 22 ++++++++++++++++++++++ EtsiServerImpl/src/WorldStorage | 0 3 files changed, 26 insertions(+) create mode 100644 EtsiServerImpl/README.md delete mode 100644 EtsiServerImpl/src/WorldStorage diff --git a/.gitignore b/.gitignore index 919dbe8..918d2c9 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,7 @@ CTestTestfile.cmake _deps node_modules .vscode +*/build/* +EtsiServerGen/* +!*/CMakeLists.txt +!*/.openapi-generator-ignore diff --git a/EtsiServerImpl/README.md b/EtsiServerImpl/README.md new file mode 100644 index 0000000..bfb0ba3 --- /dev/null +++ b/EtsiServerImpl/README.md @@ -0,0 +1,22 @@ +# WORLD STORAGE CPP SERVER (PISTACHE) + +## Description + +This folder contains the source files for a basic implementation of the library you just created + +## Requirements + +- Boost +- Pistache +- a cpp compiler + +## Code usage + +Once you are in this directory, to build and execute the server, use the following commands: + + mkdir -p build + cd build + cmake .. + make + ./HackPistacheServ + diff --git a/EtsiServerImpl/src/WorldStorage b/EtsiServerImpl/src/WorldStorage deleted file mode 100644 index e69de29..0000000 -- GitLab