From 44aaab179b809d7c8b0a47874c5ca837c695674c Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sun, 17 Apr 2016 11:33:38 +0200 Subject: [PATCH] Add app.json --- app.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 0000000..71cf1d5 --- /dev/null +++ b/app.json @@ -0,0 +1,26 @@ +{ + "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" + } + } +}