-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update deps and remove user id from config
- Loading branch information
AndreasVolkmann
committed
Feb 17, 2019
1 parent
245c2b7
commit 204220d
Showing
23 changed files
with
794 additions
and
821 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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
.gradle | ||
.idea | ||
/build | ||
/out | ||
|
||
/other | ||
|
||
/access-token | ||
/refresh-token | ||
/test-config.yml | ||
.gradle | ||
.idea | ||
/build | ||
/out | ||
|
||
/other | ||
|
||
/access-token | ||
/refresh-token | ||
/test-config.yml | ||
*.log |
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
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
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,52 +1,49 @@ | ||
#Spotify user ID | ||
userId: YOUR_USER_ID | ||
|
||
# Add an entry for each playlist you want to update | ||
playlists: | ||
# First Playlist, based on the top tracks from last week | ||
- id: YOUR_PLAYLIST_ID | ||
|
||
# How many tracks should the list contain at max? | ||
maxSize: 10 | ||
|
||
# What subreddit do you want to target? | ||
subreddit: trance | ||
|
||
# can be either of: HOT, NEW, RISING, CONTROVERSIAL, TOP | ||
sort: TOP | ||
|
||
# can be either of: HOUR, DAY, WEEK, MONTH, YEAR, ALL | ||
# Only applies when sort is set to CONTROVERSIAL or TOP | ||
timePeriod: WEEK | ||
|
||
# Minimum number of upvotes that a reddit post needs to have before being considered | ||
minUpvotes: 10 | ||
|
||
# Whether to look for the exact mix or allow other versions | ||
isStrictMix: true | ||
|
||
# Second Playlist, based on the top tracks from all time | ||
- id: YOUR_OTHER_PLAYLIST_ID | ||
maxSize: 10 | ||
subreddit: trance | ||
sort: TOP | ||
timePeriod: ALL | ||
# Omit minUpvotes to allow any reddit post to be added | ||
|
||
# set this to true, if the playlist is private | ||
isPrivate: true | ||
|
||
# When a reddit post has any of the following flairs, it will be excluded | ||
flairsToExclude: | ||
- Mix | ||
- Liveset | ||
- Radio | ||
- Show | ||
- Album | ||
- Upcoming | ||
- AMA | ||
- Concluded | ||
- RIP | ||
|
||
# minimum length of tracks in seconds in order to be added to the playlists | ||
# Add an entry for each playlist you want to update | ||
playlists: | ||
# First Playlist, based on the top tracks from last week | ||
- id: YOUR_PLAYLIST_ID | ||
|
||
# How many tracks should the list contain at max? | ||
maxSize: 10 | ||
|
||
# What subreddit do you want to target? | ||
subreddit: trance | ||
|
||
# can be either of: HOT, NEW, RISING, CONTROVERSIAL, TOP | ||
sort: TOP | ||
|
||
# can be either of: HOUR, DAY, WEEK, MONTH, YEAR, ALL | ||
# Only applies when sort is set to CONTROVERSIAL or TOP | ||
timePeriod: WEEK | ||
|
||
# Minimum number of upvotes that a reddit post needs to have before being considered | ||
minUpvotes: 10 | ||
|
||
# Whether to look for the exact mix or allow other versions | ||
isStrictMix: true | ||
|
||
# Second Playlist, based on the top tracks from all time | ||
- id: YOUR_OTHER_PLAYLIST_ID | ||
maxSize: 10 | ||
subreddit: trance | ||
sort: TOP | ||
timePeriod: ALL | ||
# Omit minUpvotes to allow any reddit post to be added | ||
|
||
# set this to true, if the playlist is private | ||
isPrivate: true | ||
|
||
# When a reddit post has any of the following flairs, it will be excluded | ||
flairsToExclude: | ||
- Mix | ||
- Liveset | ||
- Radio | ||
- Show | ||
- Album | ||
- Upcoming | ||
- AMA | ||
- Concluded | ||
- RIP | ||
|
||
# minimum length of tracks in seconds in order to be added to the playlists | ||
minimumLength: 100 |
Binary file not shown.
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,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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.