Skip to content

Commit

Permalink
chore: (endpoints) update region tag in endpoints/getting-started/app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
hivanalejandro committed Feb 6, 2025
1 parent e1a235d commit 8aa58f9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions endpoints/getting-started/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,15 @@ app.get('/auth/info/googlejwt', authInfoHandler);
app.get('/auth/info/googleidtoken', authInfoHandler);

if (module === require.main) {
// [START endpoints_server_listen]
// [START listen]
const PORT = parseInt(process.env.PORT) || 8080;
app.listen(PORT, () => {
console.log(`App listening on port ${PORT}`);
console.log('Press Ctrl+C to quit.');
});
// [END listen]
// [END endpoints_server_listen]
}
// [END app]

Expand Down

0 comments on commit 8aa58f9

Please sign in to comment.