-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from phyzical/feature/adding-support-for-artist
Feature/adding support for artist
- Loading branch information
Showing
17 changed files
with
12,422 additions
and
1,757 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[*.js] | ||
end_of_line = lf | ||
tab_width = 2 | ||
indent_size = 2 | ||
indent_style = space | ||
max_line_length = 80 | ||
semi = true |
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,16 @@ | ||
{ | ||
"parserOptions": { | ||
"ecmaVersion": 2018, | ||
"sourceType": "module" | ||
}, | ||
"rules": { | ||
"no-console": 0, | ||
"semi": 1, | ||
"comma-dangle": [1, "always-multiline"], | ||
"quotes": ["error", "single"], | ||
"arrow-parens": ["error", "as-needed"], | ||
"no-tabs": 1, | ||
"array-bracket-spacing": 1, | ||
"max-len": [1, 80] | ||
} | ||
} |
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
FROM debian:unstable | ||
FROM debian | ||
|
||
RUN apt-get update && apt-get install --no-install-recommends --assume-yes npm ffmpeg && rm -rf /var/lib/apt/lists/* | ||
RUN npm install -g spotify-dl | ||
|
||
## uncomment this for local testing | ||
# COPY ./ /usr/local/lib/node_modules/spotify-dl/ | ||
WORKDIR /download | ||
ENTRYPOINT ["spotifydl"] | ||
CMD ["--help"] |
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
Oops, something went wrong.