Skip to content

Commit

Permalink
Merge pull request #84 from phyzical/feature/adding-support-for-artist
Browse files Browse the repository at this point in the history
Feature/adding support for artist
  • Loading branch information
SwapnilSoni1999 authored May 14, 2021
2 parents 8852fd0 + 87738ab commit 7d48023
Show file tree
Hide file tree
Showing 17 changed files with 12,422 additions and 1,757 deletions.
7 changes: 7 additions & 0 deletions .editorconfig
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
16 changes: 16 additions & 0 deletions .eslintrc
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]
}
}
5 changes: 3 additions & 2 deletions Dockerfile
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"]
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ $ spotifydl https://open.spotify.com/track/xyz
```

#### Options
| Flag | Usage |
| ------ | ------ |
| -o | takes valid output path argument |
| Flag | Usage |
| ---- | ------------------------------------------------------------ |
| -o | takes valid output path argument |
| --es | takes extra search string/term to be used for youtube search |

<hr>
Expand Down
Loading

0 comments on commit 7d48023

Please sign in to comment.