Skip to content
Snippets Groups Projects
Commit 9cbace7f authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

$DISABLE_COLLECTSTATIC

parent 74cb8704
No related branches found
No related tags found
No related merge requests found
...@@ -12,12 +12,15 @@ fi ...@@ -12,12 +12,15 @@ fi
export SETTINGS_FILE MANAGE_FILE PROJECT DISABLE_INJECTION export SETTINGS_FILE MANAGE_FILE PROJECT DISABLE_INJECTION
echo " ! Notice: settings injection is deprecated for all new Django apps." echo " ! Notice: settings injection will be deprecated for all new Django "
echo " ! Please see the following URL for information on the new usage:" echo " ! apps next month. You can prepapre your application for information on the new usage:"
echo " ! https://devcenter.heroku.com/articles/django#database_settings" echo " ! https://devcenter.heroku.com/articles/django#database_settings"
if [ ! "$DISABLE_INJECTION" ]; then if [ ! "$DISABLE_INJECTION" ]; then
source $BIN_DIR/steps/django/injection source $BIN_DIR/steps/django/injection
fi fi
source $BIN_DIR/steps/django/collectstatic if [ ! "$DISABLE_COLLECTSTATIC" ]; then
\ No newline at end of file source $BIN_DIR/steps/django/collectstatic
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment