mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-22 17:47:08 +03:00
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:
parent
a2eecedaa0
commit
529b85e518
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user