-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
66 lines (66 loc) · 2.14 KB
/
app.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "RedditMusicBot",
"description": "A Reddit Music Bot template built for Heroku that automatically adds songs from subreddits to Spotify.",
"keywords": [
"Reddit",
"bot",
"music",
"spotify"
],
"website": "https://open.spotify.com/user/ry2gg4eh81ep1v42b1r6mubtw?si=lOdS_IiUTCmgQHWyh-2zbg",
"env": {
"REDDIT_USERNAME": {
"description": "The username of your Reddit bot",
"required": true
},
"REDDIT_PASSWORD": {
"description": "The password of your Reddit bot",
"required": true
},
"REDDIT_USER_AGENT": {
"description": "The user agent of your Reddit bot. Needed for Reddit admins to identify who you are. It is recommended that you include your Reddit main account here.",
"value": "/u/<your main account>'s Music Reddit Bot",
"required": true
},
"REDDIT_CLIENT_ID": {
"description": "The client id of your Reddit application",
"required": true
},
"REDDIT_CLIENT_SECRET": {
"description": "The client secret of your Reddit application",
"required": true
},
"SUBREDDIT": {
"description": "The subreddit(s) your bot is running on.",
"required": true
},
"SPOTIFY_USERNAME": {
"description": "The username of your Spotify account",
"required": true
},
"SPOTIFY_CLIENT_ID": {
"description": "The client id of your Spotify application",
"required": true
},
"SPOTIFY_CLIENT_SECRET": {
"description": "The client secret of your Spotify application",
"required": true
},
"SPOTIFY_MONTHLY_ID": {
"description": "The monthly playlist id of your spotify playlist",
"required": true
},
"SPOTIFY_ALL_ID": {
"description": "The all-time playlist id of your spotify playlist",
"required": true
},
"MONTH_UPVOTE_THRESHOLD": {
"description": "The monthly upvote threshold needed for the song to be added to the monthly playlist",
"required": true
},
"ALL_UPVOTE_THRESHOLD": {
"description": "The all-time upvote threshold needed for the song to be added to the all-time playlist",
"required": true
}
}
}