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