From 529b85e518525b6a98e30463937a1289dbc52618 Mon Sep 17 00:00:00 2001 From: German Larrain Date: Thu, 17 Jul 2014 20:41:00 -0400 Subject: [PATCH] README: remove redundant settings option Of the three `heroku run python ... manage.py ...` commands, two specified `--settings=config.settings`, which is redundant with what is in `manage.py`, and there is no reason for those two to have that option and for the third not to. --- {{cookiecutter.repo_name}}/README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.repo_name}}/README.rst b/{{cookiecutter.repo_name}}/README.rst index 372466aa..d6df16d5 100644 --- a/{{cookiecutter.repo_name}}/README.rst +++ b/{{cookiecutter.repo_name}}/README.rst @@ -102,8 +102,8 @@ Run these commands to deploy the project to Heroku: heroku config:set SENDGRID_USERNAME=YOUR_SENDGRID_USERNAME_HERE heroku config:set SENDGRID_PASSWORD=YOUR_SENDGRID_PASSWORD_HERE git push heroku master - heroku run python {{cookiecutter.repo_name}}/manage.py syncdb --noinput --settings=config.settings - heroku run python {{cookiecutter.repo_name}}/manage.py migrate --noinput --settings=config.settings + heroku run python {{cookiecutter.repo_name}}/manage.py syncdb --noinput + heroku run python {{cookiecutter.repo_name}}/manage.py migrate --noinput heroku run python {{cookiecutter.repo_name}}/manage.py createsuperuser heroku open