I feel foolish asking this question, but I cannot seem to get my local datastore to clear for a project using GAE. I've consulted the following SE questions:
- How to delete all datastore in Google App Engine?
- GAE - I can't clear datastore and the datastore is corrupted I believe
- Google App Engine Launcher delete datastore
I've also looked at the docs, and the command seems very clear among them all. I can navigate to the folder where dev_appserver.py
is located and then run
dev_appserver.py --clear_datastore=yes <myappname>
Yet, I keep getting an error stating No such file or directory
for my app.
I'm certain I'm entering the right name for my app, because it matches the name in my app.yaml
file, it matches the folder my project is in locally, and it matches the name of the project on the GAE Launcher.
My app's local files are in a directory that is completely separate from the GAE install location, if that makes any difference. I tried running the command in my app's directory and it gives me the same error.
The name contains dashes, could that be causing a problem? I realize that this is not a verifiable example, but I'm out of ideas.