From d2931a7d07f6c36914910a4c67702a12f40d6ac9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Mathieu?= Date: Tue, 28 Jul 2020 10:49:52 +0200 Subject: [PATCH] Add quickstart link to the Google Cloud Functions HTTP guide --- docs/src/main/asciidoc/gcp-functions-http.adoc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/src/main/asciidoc/gcp-functions-http.adoc b/docs/src/main/asciidoc/gcp-functions-http.adoc index e5ed26d5baaec..bfc037366226a 100644 --- a/docs/src/main/asciidoc/gcp-functions-http.adoc +++ b/docs/src/main/asciidoc/gcp-functions-http.adoc @@ -9,9 +9,9 @@ https://github.com/quarkusio/quarkus/tree/master/docs/src/main/asciidoc include::./attributes.adoc[] The `quarkus-google-cloud-functions-http` extension allows you to write microservices with RESTEasy (JAX-RS), -Undertow (servlet) or Vert.x Web, and make these microservices deployable to the Google Cloud Functions runtime. +Undertow (Servlet) or Vert.x Web, and make these microservices deployable to the Google Cloud Functions runtime. -One Google Cloud Functions deployment can represent any number of JAX-RS, servlet, or Vert.x Web endpoints. +One Google Cloud Functions deployment can represent any number of JAX-RS, Servlet, or Vert.x Web endpoints. As the Google Cloud Function Java engine is a new Beta feature of Google Cloud, this extension is flagged as experimental. @@ -33,6 +33,12 @@ This guide walks you through generating a sample project followed by creating th written with JAX-RS APIs, Servlet APIs or Vert.x Web APIs. Once built, you will be able to deploy the project to Google Cloud. +If you don't want to follow all these steps, you can go right to the completed example. + +Clone the Git repository: `git clone {quickstarts-clone-url}`, or download an {quickstarts-archive-url}[archive]. + +The solution is located in the `google-cloud-functions-http-quickstart` {quickstarts-tree-url}/google-cloud-functions-http-quickstart[directory]. + == Creating the Maven Deployment Project Create an application with the `quarkus-google-cloud-functions-http` extension.