ERROR: (gcloud.app.deploy) Error Response: [9] Application startup error:
ERROR: (gcloud.app.deploy) Error Response: [9] Application startup error: When I run 'gcloud app deploy' I get error response 9. The error message I get is Updating service [default] (this may take several minutes)...failed. ERROR: (gcloud.app.deploy) Error Response: [9] Application startup error: app.js // Imports the Google Cloud client library const Datastore = require('@google-cloud/datastore'); // Your Google Cloud Platform project ID const projectId = 'myid'; // Creates a client const datastore = new Datastore({ projectId: projectId, }); // The kind for the new entity const kind = 'Task'; // The name/ID for the new entity const name = 'sampletask1'; // The Cloud Datastore key for the new entity const taskKey = datastore.key([kind, name]); // Prepares the new entity const task = { key: taskKey, data: { description: 'Buy milk', }, }; // Saves the entity datastore .save(task) .then(() => { console.log(`Saved ${ta...
