-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
47 lines (47 loc) · 1.33 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
{
"name": "sotd-boi",
"description": "A ruby bot for adding songs to a spotify playlist.",
"repository": "https://github.com/kevindhanna/sotd-boi",
"logo": "https://discordapp.com/assets/2c21aeda16de354ba5334551a883b481.png",
"keywords": ["discord", "bot", "ruby", "sinatra", "heroku"],
"env": {
"APP_ENV": {
"description": "Environment for the bot (testing, staging, production)",
"value": "production",
"required": true
},
"APP_URL": {
"description": "URL of your web app, used for spotify redirect",
"value": "production",
"required": true
},
"DISCORD_TOKEN": {
"description": "Your Discord Bot Token",
"required": true
},
"DISCORD_CLIENT_ID": {
"description": "Your Discord Client ID",
"required": true
},
"SPOTIFY_CLIENT_ID": {
"description": "Spotify API Client ID",
"required": true
},
"SPOTIFY_CLIENT_SECRET": {
"description": "Spotify API Client Secret",
"value": true
},
"SPOTIFY_USER_ID": {
"description": "Spotify User ID of the Song Of The Day Playlist",
"required": true
},
"SOTD_PLAYLIST": {
"description": "Spotify Song of the Day Playlist ID",
"required": true
},
"REDIS_URL": {
"description": "URL for Redis instance",
"required": true
},
}
}