summaryrefslogtreecommitdiffstats
path: root/src/webenginewidgets/doc/snippets/push-notifications/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/webenginewidgets/doc/snippets/push-notifications/commands')
-rw-r--r--src/webenginewidgets/doc/snippets/push-notifications/commands19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/webenginewidgets/doc/snippets/push-notifications/commands b/src/webenginewidgets/doc/snippets/push-notifications/commands
new file mode 100644
index 000000000..aee9761c1
--- /dev/null
+++ b/src/webenginewidgets/doc/snippets/push-notifications/commands
@@ -0,0 +1,19 @@
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+//! [0]
+npm init -y
+npm install web-push express
+//! [0]
+
+//! [1]
+"start": "node server.js"
+//! [1]
+
+//! [2]
+./node_odules/.bin/web-push generate-vapid-keys
+//! [2]
+
+//! [3]
+npm start
+//! [3]