snippetbashTip
quarkus — Create Quarkus projects, manage extensions and perform essential build and development tasks. More i
Viewed 0 times
extensionscreatecommandquarkuscliprojectsmanage
Problem
How to use the
quarkus command: Create Quarkus projects, manage extensions and perform essential build and development tasks. More information: <https://quarkus.io/guides/cli-tooling>.Solution
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 devRun the application:
quarkus runRun the current project in continuous testing mode:
quarkus testAdd one or more extensions to the current project:
quarkus extension add {{extension_name1 extension_name2 ...}}Build a container image using Docker:
quarkus image build dockerDeploy the application to Kubernetes:
quarkus deploy kubernetesUpdate project:
quarkus updateCode Snippets
Create a new application project in a new directory
quarkus create app {{project_name}}Run the current project in live coding mode
quarkus devRun the application
quarkus runRun the current project in continuous testing mode
quarkus testAdd one or more extensions to the current project
quarkus extension add {{extension_name1 extension_name2 ...}}Context
tldr-pages: common/quarkus
Revisions (0)
No revisions yet.