mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
38 lines
950 B
Bash
Executable File
38 lines
950 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This script serves as the Django injection build step of the
|
|
# [**Python Buildpack**](https://github.com/heroku/heroku-buildpack-python)
|
|
# compiler.
|
|
#
|
|
# A [buildpack](http://devcenter.heroku.com/articles/buildpacks) is an
|
|
# adapter between a Python application and Heroku's runtime.
|
|
#
|
|
# This script is invoked by [`bin/compile`](/).
|
|
|
|
# ## Sanity Checks
|
|
#
|
|
|
|
# Syntax sugar.
|
|
indent() {
|
|
RE="s/^/ /"
|
|
[ $(uname) == "Darwin" ] && sed -l "$RE" || sed -u "$RE"
|
|
}
|
|
|
|
echo "-----> Installing dj-database-url..."
|
|
pip install --use-mirrors dj-database-url>=0.2.0 | indent
|
|
|
|
echo "-----> Injecting Django settings..."
|
|
|
|
SETTINGS_FILE=$(find . -maxdepth 2 -type f -name 'settings.py' | head -1)
|
|
PROJECT=$(dirname $SETTINGS_FILE)
|
|
|
|
echo "Injecting code into $SETTINGS_FILE to read from DATABASE_URL" | indent
|
|
|
|
cat >>$SETTINGS_FILE <<EOF
|
|
|
|
import dj_database_url
|
|
|
|
DATABASES = {'default': dj_database_url.config(default='postgres://')}
|
|
EOF
|
|
|