You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Reviewed-on: #12 |
18 hours ago | |
---|---|---|
.github | 1 week ago | |
.vscode | 1 month ago | |
src | 1 month ago | |
.dockerignore | 1 month ago | |
.editorconfig | 1 month ago | |
.env.example | 1 month ago | |
.eslintrc.json | 1 month ago | |
.gitattributes | 1 month ago | |
.gitignore | 1 month ago | |
Dockerfile | 1 month ago | |
LICENSE.md | 1 month ago | |
Makefile | 1 month ago | |
README.md | 3 weeks ago | |
package-lock.json | 1 day ago | |
package.json | 1 day ago | |
renovate.json | 1 month ago |
README.md
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:
- Go to the Spotify Developer Dashboard.
- Create an app.
- Add
http://127.0.0.1:43019
as a redirect URI. - Copy the Client ID and Client Secret into the
.env
file.