mirror of https://gitlab.com/gpvkt/twitchtts.git
Update config-dist.yml
This commit is contained in:
parent
3d58dcea36
commit
285e62b43d
|
@ -1,21 +1,21 @@
|
||||||
irc:
|
irc:
|
||||||
channel: "#changeme"
|
channel: "#changeme" # Your twitch channel
|
||||||
username: "changeme"
|
username: "changeme" # Your bots username
|
||||||
oauth_token: # leave this blank to start the token generator
|
oauth_token: # leave this blank to start the token generator
|
||||||
server: "irc.chat.twitch.tv"
|
server: "irc.chat.twitch.tv" # Twitch IRC server, default should be fine
|
||||||
clearmsg_timeout: 10
|
clearmsg_timeout: 10 # Time to wait for a new message to be deleted before being read
|
||||||
|
|
||||||
http:
|
http:
|
||||||
port: 80
|
port: 80 # Internal webserver port
|
||||||
bind: "localhost"
|
bind: "localhost" # Internal webserver IP/Hostname, use 0.0.0.0 to listen on all interfaces
|
||||||
|
|
||||||
bot:
|
bot:
|
||||||
start_enabled: True
|
start_enabled: True # Start the bot with TTS active, if set to False you need to enable TTS with !ton
|
||||||
subonly: False
|
subonly: False # Only Subs can use TTS
|
||||||
modonly: False
|
modonly: False # Only Mods can use TTS
|
||||||
message_length: 200
|
message_length: 200 # Max. TTS message length
|
||||||
|
|
||||||
messages:
|
messages: # Things the bot can send as chat message
|
||||||
toff: "TTS is now inactive."
|
toff: "TTS is now inactive."
|
||||||
ton: "TTS is now active."
|
ton: "TTS is now active."
|
||||||
too_long: "Sorry, your TTS message is too long."
|
too_long: "Sorry, your TTS message is too long."
|
||||||
|
@ -32,7 +32,7 @@ messages:
|
||||||
votes: "Votes"
|
votes: "Votes"
|
||||||
|
|
||||||
log:
|
log:
|
||||||
level: "INFO"
|
level: "INFO" # Loglevel, valid values are: DEBUG, INFO, WARNING, ERROR, CRITICAL (do not use DEBUG in a production environment)
|
||||||
|
|
||||||
usermapping:
|
usermapping:
|
||||||
gpkvt: "gpk"
|
gpkvt: "gpk" # rename users when being read, to make their names shorter or sound better.
|
||||||
|
|
Loading…
Reference in New Issue