If your looking for installing the CMS on GAE, then I have it almost completed in my repo here:
Some issues I've had with it:
1) When installing locally, Joomla Installer failed to detect the memcached driver[because there is no memcached extension - GAE stubs it to a python implementation for the SDK].
To get around this, I created my GAE Memcached engine and use a the regular expression matching features of GAE so that for installation, instead of loading installation/index.php my own php script, gae/joomla/install.php gets executed. My install routine then is able to add a mapping to the loader to look for Joomla classes in my own folder first - so I am able to override session, cache, and storage drivers with my own custom drivers as needed.
2) After installing Joomla I ran into issues with the database driver - ie trying to use the socket name for the cloud sql server failed miserably, hence my creation of this cloud sql driver. :-)
3) Making changes to configuration.php through the admin interface ran into a number of issues..mostly related to cache cleaning - and the xml for the config form is hardcoded to only support a fixed set of database, session, and caching drivers. I ended up writing a system plugin which modifies the config form to add in the extra options as needed. Once that was working, I was able to go ahead and save my changes, then deploy them to my GAE instance[and with the code to check for if it executes in the SDK or the instance for the database driver, the same configuration.php file is used in both places].
I still have some issues with the url mappings which I need to work out. Also ran into an issue with the log and tmp directory - there are some cases where the CMS simply insists on creating a file in one of those directories - which you can't do when running on a GAE instance.
My next step is to see if I can setup a couple of Google Cloud Storage buckets for tmp and logs, and save them in the overall configuration. If that works, then I can deploy and it works in both places.
Assuming all that works, then it's down to tedious testing of all the admin screens to make sure they work and then figuring out my url mappings so I can get the frontend working alongside the backend.
One of the "neat" items in GAE is that I can restrict access by url pattern to ensure that it is HTTPS, ensure that there is a valid Google App Logon, and even insist that the Google App user is set as an admin for my program - so I can ensure that admin page logons are always secured. There was also some feature to specify an "admin" url that will somehow appear in the Google App Admin interface as an iframe, so I'm curious to play with it.