-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
67 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
*.iml | ||
/logs/ | ||
/target/ | ||
/application.yml | ||
*/dependency-reduced-pom.xml | ||
.gradle/* | ||
build/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
server: # REST and WS server | ||
port: 2333 | ||
address: 0.0.0.0 | ||
lavalink: | ||
server: | ||
password: "youshallnotpass" | ||
sources: | ||
youtube: true | ||
bandcamp: true | ||
soundcloud: true | ||
twitch: true | ||
vimeo: true | ||
http: true | ||
local: false | ||
bufferDurationMs: 400 # The duration of the NAS buffer. Higher values fare better against longer GC pauses | ||
frameBufferDurationMs: 5000 # How many milliseconds of audio to keep buffered | ||
youtubePlaylistLoadLimit: 6 # Number of pages at 100 each | ||
playerUpdateInterval: 5 # How frequently to send player updates to clients, in seconds | ||
youtubeSearchEnabled: true | ||
soundcloudSearchEnabled: true | ||
gc-warnings: true | ||
#ratelimit: | ||
#ipBlocks: ["1.0.0.0/8", "..."] # list of ip blocks | ||
#excludedIps: ["...", "..."] # ips which should be explicit excluded from usage by lavalink | ||
#strategy: "RotateOnBan" # RotateOnBan | LoadBalance | NanoSwitch | RotatingNanoSwitch | ||
#searchTriggersFail: true # Whether a search 429 should trigger marking the ip as failing | ||
#retryLimit: -1 # -1 = use default lavaplayer value | 0 = infinity | >0 = retry will happen this numbers times | ||
|
||
plugins: | ||
dunctebot: | ||
ttsLanguage: "en-AU" # language of the TTS engine | ||
sources: | ||
# true = source enabled, false = source disabled | ||
getyarn: false # www.getyarn.io | ||
clypit: false # www.clyp.it | ||
tts: false # speak:Words to speak | ||
pornhub: true # should be self-explanatory | ||
reddit: true # should be self-explanatory | ||
ocremix: true # www.ocremix.org | ||
|
||
metrics: | ||
prometheus: | ||
enabled: false | ||
endpoint: /metrics | ||
|
||
sentry: | ||
dsn: "" | ||
environment: "" | ||
# tags: | ||
# some_key: some_value | ||
# another_key: another_value | ||
|
||
logging: | ||
file: | ||
max-history: 30 | ||
max-size: 1GB | ||
path: ./logs/ | ||
|
||
level: | ||
root: INFO | ||
lavalink: INFO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters