forked from novatorem/novatorem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
30 lines (30 loc) · 668 Bytes
/
app.json
File metadata and controls
30 lines (30 loc) · 668 Bytes
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
{
"name": "novatorem",
"description": "Realtime profile Readme displaying currently playing song on Spotify using the Spotify API.",
"scripts": {
"postdeploy": "gunicorn --workers=1 api.spotify:app"
},
"env": {
"SPOTIFY_CLIENT_ID": {
"required": true
},
"SPOTIFY_REFRESH_TOKEN": {
"required": true
},
"SPOTIFY_SECRET_ID": {
"required": true
}
},
"formation": {
"web": {
"quantity": 1
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
}
],
"stack": "heroku-20"
}