Reputation: 1245
I have a python application that I've been running with the devserver and everything seems to work fine except I am having problems initializing my datastore. Basically I need to set up data store values from a bunch of files that are on my local drive, but I don't want to upload go google. I set up a simple python script inside my app directory that does all of the data creation, but now I'm having a lot of problems deploying my app. How do I get a dump of the data that dev_appserver is using and upload it to my application?
Thanks for any insights.
Upvotes: 0
Views: 102
Reputation: 411
Download the data using appcfg.py (after enabling the remote_api), then re-'upload' it to local devappserver.
Upvotes: 1