From 00a73cb639de7329eb82b4a89738299f1deda9bb Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Sun, 1 Jan 2017 19:32:19 +0100 Subject: [PATCH] Update Heroku question in FAQ --- FAQ.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index 2a79dbf..6331183 100644 --- a/FAQ.md +++ b/FAQ.md @@ -42,7 +42,15 @@ sudo apt-get install libav-tools curl Create a dyno with the following buildpacks: * `heroku/php` -* `https://github.com/heroku/heroku-buildpack-nodejs` +* `heroku/nodejs` +* `heroku/python` + +You might also need to add the following config variables: + +```env +CONVERT=1 +PYTHON=/app/.heroku/python/bin/python +``` Then push the code to Heroku and it should work out of the box.