LinuxCommandLibrary

quarkus

Create Quarkus projects, manage extensions and perform essential build and development tasks.

TLDR

Create a new application project in a new directory

$ quarkus create app [project_name]
copy


Run the current project in live coding mode
$ quarkus dev
copy


Run the application
$ quarkus run
copy


Run the current project in continuous testing mode
$ quarkus test
copy


Add one or more extensions to the current project
$ quarkus extension add [extension_name1 extension_name2 ...]
copy


Build a container image using Docker
$ quarkus image build docker
copy


Deploy the application to Kubernetes
$ quarkus deploy kubernetes
copy


Update project
$ quarkus update
copy

Copied to clipboard