1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 23:42:09 +02:00
tldr/pages/common/quarkus.md
Darío Hereñú 2926bdb701
quarkus: add Spanish translation, fix placeholder (#12677)
* quarkus: add Spanish translation, fix placeholder

---------

Co-authored-by: Vítor Henrique <87824454+vitorhcl@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-05-03 20:36:20 +05:30

36 lines
733 B
Markdown

# 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_name1 extension_name2 ...}}`
- Build a container image using Docker:
`quarkus image build docker`
- Deploy the application to Kubernetes:
`quarkus deploy kubernetes`
- Update project:
`quarkus update`