diff options
author | terminaldweller <devi@terminaldweller.com> | 2024-05-23 03:34:57 +0000 |
---|---|---|
committer | terminaldweller <devi@terminaldweller.com> | 2024-05-23 03:34:57 +0000 |
commit | f481ec6bd224f41d847ceafb69c79282613419a7 (patch) | |
tree | 2deb7d7cff23930f1070d357dbbec407b4374f08 /README.md | |
parent | added a note regarding escape sequnces getting cut off in the middle (diff) | |
download | milla-f481ec6bd224f41d847ceafb69c79282613419a7.tar.gz milla-f481ec6bd224f41d847ceafb69c79282613419a7.zip |
sql query custom commands, WIP
Diffstat (limited to '')
-rw-r--r-- | README.md | 28 |
1 files changed, 26 insertions, 2 deletions
@@ -213,6 +213,22 @@ Name of the milla instance, must be unique across all instances. Milla will only answer if the nick is in the admin list. +### webIRCGateway + +webirc gateway to use. + +### webIRCHostname + +webirc hostname to use. + +### webIRCPassword + +webirc password to use. + +### webIRCAddress + +webirc address to use. + ### Example Config File ```toml @@ -282,7 +298,7 @@ Prints the help message. #### get -Get the value of a config option. Use the same name as the config file but capitalized. +Get the value of a config option. Use the same name as the config file but capitalized: `/get chromaFormatter` #### getall @@ -290,12 +306,20 @@ Get the value of all config options. #### set -Set a config option on the fly. Use the same name as the config file but capitalized. +Set a config option on the fly. Use the same name as the config file but capitalized: `/set chromaFormatter noop` #### memstats Returns memory stats for milla. +#### join + +Joins a channel: `/join #channel` + +#### leave + +Leaves a channel: `/leave #channel` + ## Deploy ### Docker |