im working on some basic python stuff within the google app engine and I was 开发者_如何学Cunable to figure out the correct way to structure my handlers.
Is there something I can do to not have all my modu开发者_StackOverflowles recompiled every time I hit \'Deploy to GAE\'? (Like when I don\'t touch GWT or client-side at all.)
I have this sole route in my app: routes.MapRoute( \"Default\", \"{controller}/{action}/{id}\", new { controller = \"Home\", action = \"Index\", id = \"\"}