16 lines
406 B
TOML
16 lines
406 B
TOML
# == StarfallBot configuration file ==
|
|
|
|
[web]
|
|
# What port the web server uses.
|
|
port = 5000
|
|
# Connection database url.
|
|
# sqlite is only production safe to a point - consult the SQLAlchemy
|
|
# documentation to see how to set up other databases.
|
|
database_url = "sqlite:///starfallbot.db"
|
|
|
|
[discord]
|
|
token = "YOUR BOT TOKEN HERE"
|
|
|
|
[twitch]
|
|
oauth_token = "oauth:TWITCH OAUTH TOKEN"
|
|
channel = "TWITCH CHANNEL NAME" |