mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
13 lines
242 B
Bash
Executable File
13 lines
242 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SETTINGS_FILE=$(find . -maxdepth 2 -type f -name 'settings.py' | head -1)
|
|
PROJECT=$(dirname $SETTINGS_FILE)
|
|
|
|
export SETTINGS_FILE PROJECT
|
|
|
|
if [ ! "$DISABLE_INJECTION" ]; then
|
|
source injection
|
|
fi
|
|
|
|
|
|
source collectstatic |