Before you deply any app on GAE you need to run it locally first using dev_appserver. You have to run it locally and make sure you executed every query in your code at least once. Only then you can deploy it on GAE. The purpose of this is for GAE to discover which queries you use and build indexes.
Massimo On Mar 16, 7:58 am, Al <[email protected]> wrote: > Hi, > > I have been trying to move myapp from web2py app to GAE without > success. I can manage to deploy web2py to GAE with the three built in > apps (admin, welcome and examples) where I can login to admin and > navigate to each of the three apps, but if I incorporate myapp, when I > navigate to myapp thru the admin interface after deployment, it > generate internal error. (though editing myapp thru admin still OK). > It is not just myapp which has this problem, but when I tried the T3 > and C.R.M appliance, it also has similar error. Note: I have changed > the app.yaml in the web2py source to the following: > > application: myfirstapp > version: 1 > api_version: 1 > runtime: python > > handlers: > - url: /.* > script: gaehandler.py > secure: always > > Further, if I use the original app.yaml in the web2py src, then when > try to go into the admin interface, it will give "invalid request" > error. > > Could anyone share how they deploy T3 or CRM into GAE, what changes in > the app.yaml or any other setting is required. > > Cheers > Al -- You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/web2py?hl=en.

