diff options
author | neodarz <neodarz@neodarz.net> | 2019-08-01 18:33:19 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-08-01 18:49:44 +0200 |
commit | e61d092888d88c2705cbb42e76420948d550fb65 (patch) | |
tree | 67154a5c51c36f26375364a66d42b93d4da57720 /README.md | |
download | umosapicpp-e61d092888d88c2705cbb42e76420948d550fb65.tar.xz umosapicpp-e61d092888d88c2705cbb42e76420948d550fb65.zip |
Initial commit
Diffstat (limited to '')
-rw-r--r-- | README.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..299e307 --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +# UMoSApi + +This is a second implementation in C++ of the [Python](https://git.neodarz.net/pro/umosapi.git/about/) +version of Unity Mongo Save Api. This is a simple API for save Unity object in +Mongo database. + +# Install + +## Dependency + +Install: + +- Pistache +- json-c + +# Build + +``` +mkdir build +cd build +cmake .. +make +``` + +move `umosapi` where you want. +move `swagger-ui` where you want. + +# Configuration + +You can move example file in `~/.config/umosapi/config.json`. + +The key `swaggerui` is the path of the `swagger-ui` folder. + +# Documentation + +Juste launch `umosapi` and go here: [http://127.0.0.1:9080/doc](http://127.0.0.1:9080/doc) |