Re: [google-appengine] Re: Installing a linux package for app engine instance, how to?

2017-01-20 Thread 'Justin Beckwith' via Google App Engine
We should be able to get your custom domain set up for you on env:flex. Lorne (cc'd) should be able to help us out here :) On Thu, Jan 19, 2017 at 4:44 PM, Pub Lift <*@publift.com> wrote: > ERROR: (gcloud.app.deploy) An error occurred while parsing file: [/home/ >

[google-appengine] App binary too big

2017-01-20 Thread Stani M
Would it be possible to raise the maximum binary size for a project? I run into this problem and can't remove code: App binary too big: 35722784 > 33554432 --- end server output --- 11:46 PM Rolling back the update. Error 422: --- begin server output --- Kind regards, Stani -- You received

[google-appengine] Re: GAE custom domain redirect from naked to www

2017-01-20 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Dev, You need a CNAME certificate that specifies redirecting your Root Domain to a sub-domain. Have you examined your certificate to make sure this is specified there, as desired? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group.

[google-appengine] Re: NDB dictionary

2017-01-20 Thread Richard Cheesmar
use a pre put hook to do your checking: class Fruit(ndb.Model): name = ndb.StringProperty(required=True) color = ndb.StringProperty(required=True) taste = ndb.StringProperty(required=True) def _pre_put_hook(self): On Thursday, January 19, 2017 at 5:39:56 AM UTC+2,

[google-appengine] How to drop a request?

2017-01-20 Thread sophie
My Python application receives a lot of unfriendly requests. The faster the response will be sent the sooner I get a new request. Is it possible, in some cases, do not send a response (black hole mode)? -- You received this message because you are subscribed to the Google Groups "Google App