You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following the instructions to deploy to OpenShift does not quite work as described.
The documentation just adds the openshift remote to git and then SSHes into the server to run python manage.py syncdb. But manage.py doesn't exist anywhere yet.
First you have to git push openshift master, but even that failed with 'hint: Updates were rejected because the remote contains work that you do not have locally.'
git pull openshift master even had some conflicts. Seems openshift adds files that are also created by cookiecutter. The conflicts were however pretty straight forward to fix.
After all that is done git push openshift master will finally work. Only once that is all done, the remaining steps can be completed (ssh and syncdb).
The text was updated successfully, but these errors were encountered:
Following the instructions to deploy to OpenShift does not quite work as described.
The documentation just adds the openshift remote to git and then SSHes into the server to run
python manage.py syncdb
. Butmanage.py
doesn't exist anywhere yet.git push openshift master
, but even that failed with 'hint: Updates were rejected because the remote contains work that you do not have locally.'git pull openshift master
even had some conflicts. Seems openshift adds files that are also created by cookiecutter. The conflicts were however pretty straight forward to fix.git push openshift master
will finally work. Only once that is all done, the remaining steps can be completed (ssh and syncdb).The text was updated successfully, but these errors were encountered: