Skip to content

Commit f333123

Browse files
committed
Update quickstart samples to Nodejs24
1 parent 5fe1ec4 commit f333123

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# This file specifies files that are *not* uploaded to Google Cloud
2+
# using gcloud. It follows the same syntax as .gitignore, with the addition of
3+
# "#!include" directives (which insert the entries of the given .gitignore-style
4+
# file at that point).
5+
#
6+
# For more information, run:
7+
# $ gcloud topic gcloudignore
8+
#
9+
.gcloudignore
10+
# If you would like to upload your .git directory, .gitignore file or files
11+
# from your .gitignore file, remove the corresponding line
12+
# below:
13+
.git
14+
.gitignore
15+
16+
# Node.js dependencies:
17+
node_modules/

appengine/building-an-app/build/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
# limitations under the License.
1313

1414
# [START gae_build_app_yaml_node]
15-
runtime: nodejs20
15+
runtime: nodejs24
1616
# [END gae_build_app_yaml_node]

appengine/building-an-app/build/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
1515
},
1616
"engines": {
17-
"node": "20.x.x"
17+
"node": "24.x.x"
1818
},
1919
"author": "Google Inc.",
2020
"license": "Apache-2.0",

appengine/hello-world/flexible/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
runtime: nodejs
1717
env: flex
1818
runtime_config:
19-
operating_system: ubuntu22
19+
operating_system: ubuntu24
2020
# This sample incurs costs to run on the App Engine flexible environment.
2121
# The settings below are to reduce costs during testing and are not appropriate
2222
# for production use. For more information, see:

0 commit comments

Comments
 (0)