quarkus: add page (#12667)

* quarkus: add page

---------

Co-authored-by: Vítor Henrique <87824454+vitorhcl@users.noreply.github.com>
pull/28/head
Rui Balau 2024-04-25 10:14:06 +02:00 committed by GitHub
parent b9941d2ecf
commit a876f0c79b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 36 additions and 0 deletions

36
pages/common/quarkus.md Normal file
View File

@ -0,0 +1,36 @@
# quarkus
> Create Quarkus projects, manage extensions and perform essential build and development tasks.
> More information: <https://quarkus.io/guides/cli-tooling>.
- 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`