From f833fe1ee2852e46ecc1d79461cd152f5c81a542 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Fri, 21 May 2021 16:47:08 +0300 Subject: [PATCH] [#493] config: Add example config files of storage node application Signed-off-by: Leonard Lyubich --- config/example/README.md | 13 +++++++++++++ config/example/node.json | 5 +++++ config/example/node.yaml | 2 ++ 3 files changed, 20 insertions(+) create mode 100644 config/example/README.md create mode 100644 config/example/node.json create mode 100644 config/example/node.yaml diff --git a/config/example/README.md b/config/example/README.md new file mode 100644 index 00000000..cdc5e101 --- /dev/null +++ b/config/example/README.md @@ -0,0 +1,13 @@ +# Examples of correct configuration file structures + +Here are files in all supported formats and with all possible configuration values +of NeoFS applications. + +All parameters are correct, however, they are for informational purposes only. +It is not recommended to transfer these configs for real application launches. + +## Config files + +- Storage node + - JSON: `node.json` + - YAML: `node.yaml` \ No newline at end of file diff --git a/config/example/node.json b/config/example/node.json new file mode 100644 index 00000000..17d9ee6b --- /dev/null +++ b/config/example/node.json @@ -0,0 +1,5 @@ +{ + "logger": { + "level": "debug" + } +} diff --git a/config/example/node.yaml b/config/example/node.yaml new file mode 100644 index 00000000..6f04a94f --- /dev/null +++ b/config/example/node.yaml @@ -0,0 +1,2 @@ +logger: + level: debug