views:

73

answers:

2

I'm working on a Google AppEngine project and I've changed my data format, so the old data needs to be wiped out. On AppSpot that's no problem: I use the data viewer to clobber it (the amount of data is small enough that I can use this). But how would I delete data from the local store (the data I see when I run it locally)?

+2  A: 

You just have to specify one switch:

dev_appserver.py --clear_datastore myapp

jldupont
Thanks! This didn't work for me (because the java development kit has no such switch) but it DID lead me to http://code.google.com/appengine/docs/java/tools/devserver.html#Using_the_Datastore which says I should just delete the file WEB-INF/appengine-generated/local_db.bin
mcherm
+1  A: 

Try:

http://localhost:8080/%5Fah/admin/

Yves Junqueira