From a876f0c79bbba6877d142d4b7b67f63302fb311d Mon Sep 17 00:00:00 2001 From: Rui Balau Date: Thu, 25 Apr 2024 10:14:06 +0200 Subject: [PATCH] quarkus: add page (#12667) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * quarkus: add page --------- Co-authored-by: VĂ­tor Henrique <87824454+vitorhcl@users.noreply.github.com> --- pages/common/quarkus.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/quarkus.md diff --git a/pages/common/quarkus.md b/pages/common/quarkus.md new file mode 100644 index 000000000..b92c89394 --- /dev/null +++ b/pages/common/quarkus.md @@ -0,0 +1,36 @@ +# quarkus + +> Create Quarkus projects, manage extensions and perform essential build and development tasks. +> More information: . + +- Create a new application project in a new directory: + +`quarkus create app {{project_name}}` + +- Run the current project in live coding mode: + +`quarkus dev` + +- Run the application: + +`quarkus run` + +- Run the current project in continuous testing mode: + +`quarkus test` + +- Add one or more extensions to the current project: + +`quarkus extension add {{extension_name_1 extension_name_2 ...}}` + +- Build a container image using Docker: + +`quarkus image build docker` + +- Deploy the application to Kubernetes: + +`quarkus deploy kubernetes` + +- Update project: + +`quarkus update`