If there are ones like me who prefer to execute from a python script rather than a shell:
from google.appengine.ext.remote_api import remote_api_stub remote_api_stub.ConfigureRemoteApiForOAuth('localhost:8081', '/_ah/remote_api', secure=False) os.environ['SERVER_SOFTWARE'] = 'Development' os.environ['HTTP_HOST'] = 'localhost:8080' ... do stuff ...
I start the dev server with the parameter "--api_port 8081", otherwise just look at the port used in the dev server logs ("Starting the API server on ...").
Environment settings should be able to use the cloudstorage api for the dev server.
source share