How to setup the RemoteApiInstaller with Guice when running GAE apps locally?

How to setup the RemoteApiInstaller with Guice when running GAE apps locally?

I wrote a standalone client that accesses my Google App Engine app through
the Remote API. I am using it to troubleshoot an issue that I am facing on
the live GAE environment. That works great in a standalone client e.g. a
unit test.
String username = "<username>";
String password = "<password>";
RemoteApiOptions options = new RemoteApiOptions().
server("<host>", <port>).credentials(username, password);
RemoteApiInstaller installer = new RemoteApiInstaller();
installer.install(options);
But I am also using Guice to manage dependencies. How can I install the
RemoteApiInstaller in my GuiceCreator so that all services (datastore,
memcache, etc) come from GAE but the code runs on my local dev
environment? Instead of using the remote API in a unit test, I want to
setup the Remote API with the rest of my app. I want to set breakpoints in
my (local) code but communicate with (remote) datastore/memcache services.