Well, I am trying to follow some tutorial to deploy an Universal Angular project on google cloud platform.
The project work fine on local < it's just an empty Universal Angular project >.
So I try deploy it on google cloud app engine using:
gcloud app deploy
Here come the puzzle part: It gives me an error:
ERROR: (gcloud.app.deploy) INVALID_ARGUMENT: This deployment has too many files. New versions are limited to 10000 files for this app.
- '@type': type.googleapis.com/google.rpc.BadRequest
fieldViolations:
- description: This deployment has too many files. New versions are limited to 10000
files for this app.
field: version.deployment.files[...]
Well, I am using the free plan from google:
So my question is:
- Is the google cloud platform try to upload all the files in the project folder of Universal Angular < which is huges because of node_modules folder>
- Is the google cloud platform limit the number of files to 10000? If so, how could I upload the universal project to google cloud platform? Do I have to upgrade my plan?
Thank you very much for reading the question.