google app engine - How to cleanup the development datastore? -


in google app engine go sdk can fill local datastore bunch of test data. it's tiring delete thousands of records 20 @ time using web interface. there command erases local datastore?

simply provide --clear_datastore command line parameter when starting:

goapp serve --clear-datastore 

documented at: the go development server: using datastore.

to clear local datastore application, use --clear_datastore=yes option when start web server:

note documentation "copied" python section, need use presented above (you error if try execute goapp serve --clear_datastore=yes).


Comments

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -