From 3cc9098e255fd620d6dd0767825abbd9342a1966 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 30 May 2012 05:05:41 -0300 Subject: [PATCH 1/3] Update Readme.md --- Readme.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Readme.md b/Readme.md index a1f7a1a..bcd1668 100644 --- a/Readme.md +++ b/Readme.md @@ -33,6 +33,10 @@ Example usage: Successfully installed Flask Werkzeug Jinja2 Cleaning up... +You can also add it to upcoming builds of an existing application: + + $ heroku config BUILDPACK_URL=git@github.com:heroku/heroku-buildpack-python.git + The buildpack will detect your app as Python if it has the file `requirements.txt` in the root. It will detect your app as Python/Django if there is an additional `settings.py` in a project subdirectory. It will use virtualenv and pip to install your dependencies, vendoring a copy of the Python runtime into your slug. The `bin/`, `include/` and `lib/` directories will be cached between builds to allow for faster pip install time. From 1588ea44b2f59b1fc38be519687c9c8a821ba6a1 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 30 May 2012 05:05:55 -0300 Subject: [PATCH 2/3] Update Readme.md --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index bcd1668..925ac7e 100644 --- a/Readme.md +++ b/Readme.md @@ -35,7 +35,7 @@ Example usage: You can also add it to upcoming builds of an existing application: - $ heroku config BUILDPACK_URL=git@github.com:heroku/heroku-buildpack-python.git + $ heroku config BUILDPACK_URL=git@github.com:heroku/heroku-buildpack-python.git The buildpack will detect your app as Python if it has the file `requirements.txt` in the root. It will detect your app as Python/Django if there is an additional `settings.py` in a project subdirectory. From 538ef6e3789cabb445920752fdebd04e0f36698d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 30 May 2012 05:07:37 -0300 Subject: [PATCH 3/3] Update Readme.md --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 925ac7e..1521072 100644 --- a/Readme.md +++ b/Readme.md @@ -35,7 +35,7 @@ Example usage: You can also add it to upcoming builds of an existing application: - $ heroku config BUILDPACK_URL=git@github.com:heroku/heroku-buildpack-python.git + $ heroku config:add BUILDPACK_URL=git@github.com:heroku/heroku-buildpack-python.git The buildpack will detect your app as Python if it has the file `requirements.txt` in the root. It will detect your app as Python/Django if there is an additional `settings.py` in a project subdirectory.