[google-appengine] Re: Help with installation on mac please

2020-10-23 Thread 'yananc' via Google App Engine
Hi Jennifer, Thank you for your reply. Are you using Homebrew? It seems to be a known issue with pip. The Stackoverflow thread provides possible solutions. Basically you

[google-appengine] Re: Programmatic Deploy on Cloud Run

2020-10-23 Thread 'Jofre Riba Sanchez' via Google App Engine
There is an API for Cloud Run: https://cloud.google.com/run/docs/reference/rest The gcloud SDK is only an interface to connect to the GCP APIs. If you run any command with the flags `--verbosity=debug` and `--log-http`, you'll see each call the SDK is making. You can make the calls manually, b

[google-appengine] Re: Google Appengine trying to serve me files instead of a route

2020-10-23 Thread 'Jofre Riba Sanchez' via Google App Engine
The Appengine docs explain that using express to serve files is for local development [1], hence why it works on your local environment. However, to serve files from a deployed Appengine, you must specify the routes in your app.yaml file [2]. [1] https://cloud.google.com/appengine/docs/standar