forked from adamontherun/SpotifyTokenRefresh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
21 lines (21 loc) · 712 Bytes
/
app.json
File metadata and controls
21 lines (21 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "Spotify Token Service",
"description": "A Spotify Token Swap/Refresh Service for easy deployment to Heroku.",
"repository": "https://github.com/adamontherun/SpotifyTokenRefresh",
"keywords": ["Sinatra", "spotify", "token"],
"env": {
"CLIENT_ID": {
"description": "Your client id, found in your Spotify App Dashboard."
},
"CLIENT_SECRET": {
"description": "Your client secret, found in your Spotify App Dashboard."
},
"ENCRYPTION_SECRET": {
"description": "A secret key used to encrypt your token.",
"generator": "secret"
},
"CLIENT_CALLBACK_URL": {
"description": "The Redirect URI found in your Spotify App Dashboard."
}
}
}