Release version 1.0.0
This commit is contained in:
@@ -1,19 +1,31 @@
|
||||
irc:
|
||||
host: "irc.someircserver.net"
|
||||
port: 6667 # asif does not support ssl as of 2025-02-23
|
||||
nick: "bot"
|
||||
user: "bot"
|
||||
realname: "Botty Bot - https://bot.site"
|
||||
channel: "#channel"
|
||||
host: "irc.libera.chat"
|
||||
port: 6667
|
||||
nick: "IcecastBot"
|
||||
user: "icecastbot"
|
||||
realname: "Icecast IRC Bot"
|
||||
channel: "#yourchannel"
|
||||
|
||||
stream:
|
||||
url: "http://your-icecast-server.com:8000/" # this is the *base* url of the icecast server
|
||||
endpoint: "stream" # this is the endpoint of the icecast server (e.g. /stream or .mp3)
|
||||
health_check_interval: 300
|
||||
url: "https://your.stream.url" # Base URL without /stream or .mp3
|
||||
endpoint: "/stream" # The endpoint part (e.g. /stream, /radio.mp3)
|
||||
health_check_interval: 300 # How often to log health status (in seconds)
|
||||
|
||||
announce:
|
||||
format: "\x02Now playing:\x02 {song}"
|
||||
ignore_patterns:
|
||||
format: "\x02Now playing:\x02 {song}" # Format for song announcements
|
||||
ignore_patterns: # Don't announce songs matching these patterns
|
||||
- "Unknown"
|
||||
- "Unable to fetch metadata"
|
||||
# Add more patterns to ignore here
|
||||
- "Error fetching metadata"
|
||||
|
||||
commands:
|
||||
prefix: "!" # Command prefix (e.g. !np, !help)
|
||||
require_nick_prefix: false # If true, commands must be prefixed with "botname: " or "botname, "
|
||||
allow_private_commands: false # If true, allows commands in private messages
|
||||
|
||||
admin:
|
||||
users: # List of users who can use admin commands (use "*" for anyone)
|
||||
- "*"
|
||||
|
||||
logging:
|
||||
level: "INFO" # Logging level: DEBUG, INFO, WARNING, ERROR, or CRITICAL
|
||||
Reference in New Issue
Block a user