[#493] config: Add example config files of storage node application

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2021-05-21 16:47:08 +03:00 committed by Leonard Lyubich
parent b8a5f09174
commit f833fe1ee2
3 changed files with 20 additions and 0 deletions

13
config/example/README.md Normal file
View file

@ -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`

5
config/example/node.json Normal file
View file

@ -0,0 +1,5 @@
{
"logger": {
"level": "debug"
}
}

2
config/example/node.yaml Normal file
View file

@ -0,0 +1,2 @@
logger:
level: debug