An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

[![CodeFactor](https://img.shields.io/codefactor/grade/github/Simnico99/ZirconSound/main?logo=codefactor&logoColor=%23ffff)](https://www.codefactor.io/repository/github/simnico99/zirconsound)
[![Build Status](https://img.shields.io/azure-devops/build/ZirconCloud/cafdcdd9-671a-4417-aba8-7b5e350b9261/4/main?label=Azure%20Pipelines&logo=Azure%20Pipelines)](https://dev.azure.com/ZirconCloud/ZirconSound/_build/latest?definitionId=4&branchName=master)
[![License](https://img.shields.io/github/license/Simnico99/ZirconSound?style=flat)](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"
}
}
]
}
}
```
![Alt](https://repobeats.axiom.co/api/embed/c105bf22a6750b151f0b087f44c038ac53c02217.svg "Repobeats analytics image")