-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample_config.yml
49 lines (39 loc) · 1.29 KB
/
example_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# 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