This is my app.yaml file
# [START runtime]
runtime: python27
threadsafe: yes
# [END runtime]
handlers:
- url: /(.+)
static_files: dist/
upload: dist/(.*)
- url: /
static_files: dist/index.html
upload: dist/index.html
skip_files:
- ^(?!dist) # Skip any files not in the dist folder
The Angular project contains the folder disp with the project files.
I am running gcloud app deploy from the directory where the appl.yaml file is located and it returns an error: ERROR: (gcloud.app.deploy) INTERNAL: Internal error encountered.
Does someone enlighten me?