Skip to content
Merged
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
8 changes: 4 additions & 4 deletions appengine/headless-chrome/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ limitations under the License.
*/
'use strict';

// [START full_sample]
// [START gae_std_headless_chrome_full_sample]
const express = require('express');
const puppeteer = require('puppeteer');
const app = express();
Expand All @@ -32,11 +32,11 @@ app.use(async (req, res) => {
}

if (!browser) {
// [START browser]
// [START gae_std_headless_chrome_full_sample_browser]
browser = await puppeteer.launch({
args: ['--no-sandbox'],
});
// [END browser]
// [END gae_std_headless_chrome_full_sample_browser]
}

const page = await browser.newPage();
Expand All @@ -54,6 +54,6 @@ const server = app.listen(process.env.PORT || 8080, err => {
const {port} = server.address();
console.info(`App listening on port ${port}`);
});
// [END full_sample]
// [END gae_std_headless_chrome_full_sample]

module.exports = app;
4 changes: 2 additions & 2 deletions appengine/headless-chrome/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# See the License for the specific language governing permissions and
# limitations under the License

# [START app_yaml]
# [START gae_std_headless_chrome_app_yaml]
runtime: nodejs10
instance_class: F4_1G
# [END app_yaml]
# [END gae_std_headless_chrome_app_yaml]