With Django-nonrel on GAE, how do I do I load in a fixture to the server after deploying? I'm able to do it locallay via
python manage.py loaddata fixturename
But how can I do it on a deployed app that is already on appspot.com?
With Django-nonrel on GAE, how do I do I load in a fixture to the server after deploying? I'm able to do it locallay via
python manage.py loaddata fixturename
But how can I do it on a deployed app that is already on appspot.com?
You should look into using the appengine bulkloader. http://code.google.com/appengine/docs/python/tools/uploadingdata.html
I've only used it with stock appengine and it works like a charm; for django-nonrel you may have to handle a few things yourself but it should still be fine.
I believe the answer is
with an additional 'remote' word. I've tested that (about five minute before I type this). It will prompt for your gmail account and password.
You also need to enable remote_api in app.yaml (if i'm not mistaken)
I hope that work.