Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions appengine/building-an-app/build/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# [START app_yaml]
Copy link
Contributor

@eapl-gemugami eapl-gemugami Mar 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. You are going to have a conflict with the rename in PR chore(gae): Remove older region tag #4032 for file appengine/building-an-app/update/app.yaml.

  2. The fixed region tag requires a language suffix for node

See polls.yaml#L25 as an example, and the internal resource naming-a-new-region-tag

~ ~ ~

You could use gae_build_app_yaml_node.

# [START gae_app_yaml]
runtime: nodejs20
# [END gae_app_yaml]
# [END app_yaml]
5 changes: 2 additions & 3 deletions appengine/building-an-app/build/test/server.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,14 @@ const supertest = require('supertest');
const path = require('path');
const app = require(path.join(__dirname, '../', 'server.js'));


describe('gae_app', () => {
it('should be listening', async () => {
await supertest(app).get('/').expect(200);
});
})
});

describe('gae_build_web_server_app', () => {
it('should be listening', async () => {
await supertest(app).get('/').expect(200);
});
})
});
Loading