From cfa2c22c21d91150cc00efa717f606ae56d21bb6 Mon Sep 17 00:00:00 2001 From: Oliver Akins Date: Sun, 31 Jul 2022 16:34:16 -0600 Subject: [PATCH] Add config template --- config.template.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 config.template.toml diff --git a/config.template.toml b/config.template.toml new file mode 100644 index 0000000..7ff4293 --- /dev/null +++ b/config.template.toml @@ -0,0 +1,19 @@ +[server] +# the host IP of the server +host = "0.0.0.0" + +# the port the server is running on +port = 4000 + + +# This is an example account, copy and paste this entire block to make more +# accounts. +# username: The account's username +# password: The account's password +# access: An array of strings representing channel names that the account has +# the ability to see and modify. The only special string supported is "*" +# which is the equivalent of all channels within the system. +[[accounts]] +username = "example" +password = "change-this-password-because-it's-incredibly-insecure-since-it's-public" +access = ["*"] \ No newline at end of file