Automatically Add New Releases from Followed Artists to your Liked Songs on Spotify.
Go to file
Chase 8ba3714b54
📦 Publish Docker Container / build (push) Successful in 9s Details
--> Linted: DOCKERFILE_HADOLINT No errors were found in the linting process Details
--> Linted: EDITORCONFIG No errors were found in the linting process Details
--> Linted: GITHUB_ACTIONS No errors were found in the linting process Details
--> Linted: GITLEAKS No errors were found in the linting process Details
--> Linted: JSON No errors were found in the linting process Details
--> Linted: YAML No errors were found in the linting process Details
🎨 Lint / lint (push) Successful in 31s Details
Merge pull request 'Update node Docker tag to v22' (#24) from renovate/node-22.x into main
Reviewed-on: #24
2024-04-27 01:59:20 +00:00
.github Update '.github/workflows/linter.yml' 2023-09-13 16:35:48 +00:00
.vscode Initial Commit 2023-08-20 21:23:01 -05:00
src fix random shit being added (i think) 2023-08-21 19:14:34 -05:00
.dockerignore ok we got somewhere 2023-08-20 23:06:42 -05:00
.editorconfig Initial Commit 2023-08-20 21:23:01 -05:00
.env.example fix random shit being added (i think) 2023-08-21 19:14:34 -05:00
.eslintrc.json Initial Commit 2023-08-20 21:23:01 -05:00
.gitattributes Initial Commit 2023-08-20 21:23:01 -05:00
.gitignore ok we got somewhere 2023-08-20 23:06:42 -05:00
Dockerfile Update node Docker tag to v22 2024-04-26 18:08:36 +00:00
LICENSE.md Initial Commit 2023-08-20 21:23:01 -05:00
Makefile Initial Commit 2023-08-20 21:23:01 -05:00
README.md detach 2023-08-30 14:16:36 +00:00
package-lock.json Update dependency eslint-plugin-unicorn to v52 2024-04-26 04:49:48 +00:00
package.json Update dependency eslint-plugin-unicorn to v52 2024-04-26 04:49:48 +00:00
renovate.json Initial Commit 2023-08-20 21:23:01 -05:00

README.md

aaa-spotify
Donate

Automatically Add New Releases from Followed Artists to your Liked Songs on Spotify.

Running

# Note: You can only use docker if you have a valid "doNotShareInfo.txt" file first. Run it locally with node first.
docker run -d \
    --name aaa-spotify \
    -e SPOTIFY_CLIENT_ID=asdf \
    -e SPOTIFY_CLIENT_SECRET=asdf \
    -v /path/to/doNotShareInfo.txt:/app/doNotShareInfo.txt \
    git.chse.dev/chase/aaa-spotify:latest

Development

git clone https://git.chse.dev/chase/aaa-spotify.git
cd aaa-spotify
npm i
cp .env.example .env # add creds.
node .

To get credentials:

  1. Go to the Spotify Developer Dashboard.
  2. Create an app.
  3. Add http://127.0.0.1:43019 as a redirect URI.
  4. Copy the Client ID and Client Secret into the .env file.