DAVIDS/app.json

31 lines
616 B
JSON
Raw Normal View History

2016-04-17 11:33:38 +02:00
{
"name": "spotify-duplicate-finder",
"description": "Duplicate finder for your Spotify playlists",
"scripts": {
},
"addons": [
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
}
],
"env": {
"CLIENT_SECRET": {
"description": "Spotify client secret"
},
"CLIENT_ID": {
"description": "Spotify client id"
},
"CALLBACK": {
"description": "The callback URL",
"value": "http://your-app.herokuapp.com/callback"
2016-04-21 02:38:56 +02:00
},
"NODE_ENV": {
"description": "The node environment",
"value": "prod"
2016-04-17 11:33:38 +02:00
}
}
}