-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
81 lines (81 loc) · 2.41 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "Spotify Telegram Sync",
"description": "A userbot that syncs your Spotify playlist with your Telegram channel, and updates your bio and the pinned message on your channel to your current playback.",
"keywords": [
"Telegram",
"Spotify",
"Bot"
],
"logo": "https://github.com/Allerter/spotify-telegram-sync/blob/master/logo.png?raw=true",
"env": {
"SPOTIFY_CLIENT_ID": {
"description": "Your Spotify app's client ID",
"required": true
},
"SPOTIFY_CLIENT_SECRET": {
"description": "Your Spotify app's client secret",
"required": true
},
"SPOTIFY_REFRESH_TOKEN": {
"description": "Your Spotify account's refresh token",
"required": true
},
"SPOTIFY_PLAYLIST_ID": {
"description": "Your Spotify playlist ID",
"required": true
},
"TELETHON_API_ID": {
"description": "Your Telegram app's API ID",
"required": true
},
"TELETHON_API_HASH": {
"description": "Your Telegram app's API hash",
"required": true
},
"TELETHON_SESSION_STRING": {
"description": "The string session you generated using string_session.py",
"required": true
},
"TELEGRAM_CHANNEL": {
"description": "The username of your Telegram channel. It can also be the channel ID or an invite link.",
"required": true
},
"DEEZER_ARL_TOKEN": {
"description": "Your Deezer ARL token",
"required": true
},
"UPDATE_BIOS": {
"description": "Would you like to have your account bio and a pinned message on your channel to be updated to your current playback on Spotify?",
"value": "TRUE",
"required": true
},
"UPDATE_PLAYLIST": {
"description": "Should changes to the Spotify playlist be reflected on your Telegram channel?",
"value": "TRUE",
"required": true
},
"CHECK_TELEGRAM": {
"description": "Should changes to the Telegram channel be reflected on your Spotify playlist? For example if a song is posted on your Telegram channel or removed from it.",
"value": "TRUE",
"required": true
},
"USING_HEROKU": {
"description": "Needed to set database URL. Leave this on TRUE.",
"value": "TRUE",
"required": true
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "12"
}
}
],
"formation": {
"worker": {
"quantity": 1
}
}
}