Reputation: 15831
How to transfer my local/development datastore to the real/deployment datastore?
Upvotes: 1
Views: 690
Reputation: 20890
It's surprisingly complex, but you can use the bulk uploader to accomplish this. See http://code.google.com/appengine/docs/python/tools/uploadingdata.html
You use the bulk loader to download the data from your development store and then upload it to your production store.
Upvotes: 2