-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
32 lines (32 loc) · 1.07 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
{
"name": "Spotify Discover Weekly Sync",
"description": "Automatically sync your Spotify Discovery Weekly playlist to Google Play Music",
"keywords": [
"spotify",
"discover weekly",
"google play music"
],
"addons": ["scheduler"],
"env": {
"SPOTIFY_CLIENT_ID": {
"description": "Spotify API Client ID (First three steps from https://developer.spotify.com/web-api/tutorial/)",
"value": ""
},
"SPOTIFY_CLIENT_SECRET": {
"description": "Spotify API Client Secret (First three steps from https://developer.spotify.com/web-api/tutorial/)",
"value": ""
},
"SPOTIFY_USER_ID": {
"description": "Spotify username",
"value": ""
},
"GPM_EMAIL_ADDRESS": {
"description": "The email address used to log into GPM",
"value": "example@gmail.com"
},
"GPM_APP_PASSWORD": {
"description": "A Google App Password generated for use by this program (https://support.google.com/accounts/answer/185833?hl=en)",
"value": ""
}
}
}