[google-appengine] Re: gcloud app deploy command broken

2021-04-27 Thread Assistant RDV
Hi, there is the log of Cloud Build. It seem that 2 files are corrupted in bold font. Is there any command I can use to flush existing file/image and upload brand new files? Thanks starting build "80322687-0c4e-4b52-bd98-9441d3472263" FETCHSOURCE BUILD Starting Step #0 - "fetcher" Step

[google-appengine] Re: gcloud app deploy command broken

2021-04-27 Thread 'Shawn Wu' via Google App Engine
please add --verbosity(https://cloud.google.com/sdk/gcloud/reference#--verbosity) flag to debug to pull out the error details for further understanding On Tuesday, April 27, 2021 at 9:09:10 AM UTC-4 in...@rdvassistant.com wrote: > hello, > I am looking for help for an issue of GAE deploy > >

Re: [google-appengine] Re: Redirected custom domain from Google does not show in browser address bar

2021-04-27 Thread NoCommandLine -
I don’t know of specific documentation about this (apart from code suggestions/approaches on Stackoverflow). On a project which was written in Python (with Flask), we added the code to @app.before_request so it gets executed before each request to the Application (and redirected the user to

Re: [google-appengine] Re: Redirected custom domain from Google does not show in browser address bar

2021-04-27 Thread Glenn Richard
Thanks for your feedback, NoCommandLine. Personally, it's fine with me if someone finds a way into my site via the appspot domain name, so long as the custom name prevails in the address bar when it is used as the access method. But for those who read this thread and wish to redirect visitors

Re: [google-appengine] Re: Redirected custom domain from Google does not show in browser address bar

2021-04-27 Thread NoCommandLine -
Looks good. Glad you figured it out. Note: If for some reason someone goes directly to the .appspot link, it won’t automatically redirect to your custom domain. You need to have code that will handle this redirect. However, some people don’t worry about this based on the argument that the

Re: [google-appengine] Re: GAE request URI traffic stats

2021-04-27 Thread Amogh Asgekar
Thanks for you response Yanan! Here's what I'm looking for. Say my appengine instance is hosted on website.com ( http://website.com/ ) and exposes the following routes website.com/api/search ( http://website.com/api/search ) website.com/api/posts ( http://website.com/api/posts )

[google-appengine] gcloud app deploy command broken

2021-04-27 Thread Assistant RDV
hello, I am looking for help for an issue of GAE deploy I switched branch of my local repo while executing command "gcloud app deploy" Now I get an error message every time I run the command. Beginning deployment of service [default]...

[google-appengine] Can GAE handle requests from the same user in a same instance

2021-04-27 Thread Jonas C
It's clear said in GAE documentation that *Any request can be routed to any instance, so consecutive requests from the same user are not necessarily sent to the same instance*. But what if the requests from the same user need to be always handled in the same instance, and the requests from

Re: [google-appengine] Re: Redirected custom domain from Google does not show in browser address bar

2021-04-27 Thread Glenn Richard
Thanks, NoCommandLine, and David for your help. The redirect works correctly now. Following your advice, with assistance from links you provided, I re-performed the mapping process from scratch. For the benefit of others, I am providing the following summary of the steps that I believe were

Re: [google-appengine] Re: GAE Microservices

2021-04-27 Thread wesley chun
Hi Mukesh, in addition to my colleague Andrew's recommendations, I'll add the following: 1. You inquired about microservices. We have a Python 2 *App Engine microservices architecture* document that