https://github.com/simnico99/zirconsound
A bot for discord that play music from youtube.
https://github.com/simnico99/zirconsound
Last synced: 10 months ago
JSON representation
A bot for discord that play music from youtube.
- Host: GitHub
- URL: https://github.com/simnico99/zirconsound
- Owner: Simnico99
- License: mit
- Created: 2021-09-16T16:03:47.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-07-09T09:31:10.000Z (almost 2 years ago)
- Last Synced: 2024-12-10T11:53:44.492Z (over 1 year ago)
- Language: C#
- Homepage:
- Size: 145 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.codefactor.io/repository/github/simnico99/zirconsound)
[](https://dev.azure.com/ZirconCloud/ZirconSound/_build/latest?definitionId=4&branchName=master)
[](https://github.com/Simnico99/ZirconSound/blob/main/LICENSE)
# ZirconSound
A bot for discord that play music from youtube..
## Configurations
You need to add configurations to the root of your project ``` appsettings.Development.json``` and ``` appsettings.json``` here are exemples:
#### appsettings.Development.json Exemple:
```json
{
"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" }
]
}
}
```
#### appsettings.json Exemple:
```json
{
"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"
}
}
]
}
}
```
