Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# only used for docker

DOMAIN=
PORT=
DOMAIN=localhost
PORT=8080

# Spotify Client / Secret; make an application over here: https://developer.spotify.com/my-applications/
SPOTIFYCLIENT=
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ You can visit the official site [here](https://eternalbox.dev/), in case you wan

You need to install [docker](https://docs.docker.com/engine/install/) and [docker-compose](https://docs.docker.com/compose/install/)

You'll also need to install [Java's JDK](https://www.oracle.com/java/technologies/downloads/#jdk20-windows). Currently tested and working locally with JDK Development Kit 20.0.2, which is the latest at the time of writing.

Docker version currently is at v4.22.1

Then, download or clone the repository.

## Configuration
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins {
id 'java'
id 'application'
id 'org.jetbrains.kotlin.jvm' version '1.3.60'
id 'com.github.johnrengelman.shadow' version '4.0.3'
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}

apply plugin: 'kotlin'
Expand All @@ -20,7 +20,7 @@ repositories {
}

ext {
kotlin_version = '1.3.60'
kotlin_version = '1.6.0'
vertx_version = '3.9.0'
jackson_version = '2.9.2'
}
Expand Down Expand Up @@ -69,4 +69,4 @@ compileKotlin {
kotlinOptions {
jvmTarget = '1.8'
}
}
}
2 changes: 1 addition & 1 deletion yt.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
yt-dlp $1 -f "best" --audio-format $3 -x -o $2 --max-filesize 100m --no-playlist
yt-dlp $1 -f "best" -k --audio-format $3 -x -o $2 --max-filesize 100m --no-playlist