Where do I go to delete everything in my local db?

I saw this: http://fourtyten.blogspot.com/2009/07/how-to-empty-google-app-engines-local.html

But my WEB-INF directory doesn't have a local_db.bin

I saw this post also How to delete all datastore in Google App Engine?

If you're talking about the development datastore, you'll just have to delete the following file: "./WEB-INF/appengine-generated/local_db.bin". The file will be generated for you again next time you run the development server and you'll have a clear db.

But I can't find this folder either.

--Update--- I found this post How do I delete all entities from my local Google App-engine datastore? and it looks like I can use dev_appserver.py --clear_datastore dennys

But when I run that I get this python dev_appserver.py --celar_datastore dennys python: can't open file 'dev_appserver.py': [Errno 2] No such file or directory

How do I find where dev_appserver.py is on my machine?

link|improve this question

Those are both for the Java version. – Daniel Roseman Oct 19 '11 at 15:49
any idea how to do it for Python? – b-ryce Oct 19 '11 at 15:55
How do you normally launch dev_appserver? If you do it from an icon on your desktop, inspect the properties of that icon to find the path. – Moishe Oct 19 '11 at 16:16
feedback

1 Answer

up vote 1 down vote accepted

To delete data follow the steps here: http://code.google.com/appengine/docs/python/tools/devserver.html#Using_the_Datastore

This question is not longer valid, my problem is listed here: Where is dev_appserver.py for Django-nonrel and Google App Engine

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.