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.
This commit is contained in:
German Larrain 2014-07-17 20:41:00 -04:00
parent a2eecedaa0
commit 529b85e518

View File

@ -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