forked from simontaen/SpotifyTokenSwap
-
Notifications
You must be signed in to change notification settings - Fork 27
/
app.json
29 lines (29 loc) Β· 1.01 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
{
"name": "Spotify Token Swap Service",
"description":
"Swap tokens for using Spotify APIs and SDKs, made really simple π β",
"keywords": ["spotify", "authorization code", "ruby", "sinatra", "heroku"],
"addons": [],
"env": {
"SPOTIFY_CLIENT_ID": {
"description":
"Client ID of your Spotify application. Find it at https://developer.spotify.com/dashboard",
"required": true
},
"SPOTIFY_CLIENT_SECRET": {
"description":
"Client Secret of your Spotify application. Find it at https://developer.spotify.com/dashboard",
"required": true
},
"SPOTIFY_CLIENT_CALLBACK_URL": {
"description":
"A registered callback URL for your Spotify application. Register a callback in 'Edit Settings' at https://developer.spotify.com/dashboard",
"value": "yourapplication://",
"required": true
},
"ENCRYPTION_SECRET": {
"description": "A secret key for additional security of refresh tokens.",
"generator": "secret"
}
}
}