A bot for discord that play music from youtube..
You need to add configurations to the root of your project appsettings.Development.json
and appsettings.json
here are exemples:
{
"prefix": ".",
"token": "INSERT DEV BOT DISCORD TOKEN HERE!",
"Logging": {
"LogLevel": {
"Discord": "Warning"
}
},
"Serilog": {
"Using": [],
"MinimumLevel": {
"Default": "Debug",
"Override": {
"Microsoft": "Warning",
"System": "Warning"
}
},
"Enrich": [ "FromLogContext", "WithMachineName", "WithProcessId", "WithThreadId", "WithAssemblyName", "WithAssemblyVersion" ],
"WriteTo": [
{ "Name": "Console" }
]
}
}
{
"prefix": "!",
"token": "INSERT BOT DISCORD TOKEN HERE",
"Logging": {
"LogLevel": {
"Discord": "Warning"
}
},
"Serilog": {
"Using": [],
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"System": "Warning"
}
},
"Enrich": [ "FromLogContext", "WithMachineName", "WithProcessId", "WithThreadId", "WithAssemblyName", "WithAssemblyVersion" ],
"WriteTo": [
{ "Name": "Console" },
{
"Name": "Seq",
"Args": {
"serverUrl": "SEQ SERVER URL HERE",
"apiKey": "SEQ SERVER KEY"
}
}
]
}
}