aboutsummaryrefslogtreecommitdiff
path: root/doc/config.example.toml
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2020-02-02 12:15:27 +0100
committerDaniel Mueller <deso@posteo.net>2020-09-01 21:20:40 -0700
commitcbd0115cf2d746f5ccde212696376642cee950f9 (patch)
treeaf840eba44242390335e872a9febaae39ae0f969 /doc/config.example.toml
parent28f75e9abe874b4469f761598681b8e0d92739af (diff)
downloadnitrocli-cbd0115cf2d746f5ccde212696376642cee950f9.tar.gz
nitrocli-cbd0115cf2d746f5ccde212696376642cee950f9.tar.bz2
Add config test case and example config file
This patch adds a simple configuration file that demonstrates the syntax and contains some documentation. We suggest to ship this file together with nitrocli and to install it e.g., in the /usr/share/doc/nitrocli directory. This patch also adds a simple test case that makes sure that the example file is parsed correctly.
Diffstat (limited to 'doc/config.example.toml')
-rw-r--r--doc/config.example.toml10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/config.example.toml b/doc/config.example.toml
new file mode 100644
index 0000000..a427749
--- /dev/null
+++ b/doc/config.example.toml
@@ -0,0 +1,10 @@
+# This is an example configuration file for nitrocli. To use it, place it at
+# ${XDG_CONFIG_HOME}/nitrocli/config.toml, where XDG_CONFIG_HOME defaults to
+# ${HOME}.
+
+# The model to connect to (string, "pro" or "storage", default: not set).
+model = "pro"
+# Do not cache secrets (boolean, default: false).
+no_cache = true
+# The log level (integer, default: 0).
+verbosity = 2