mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-22 06:02:30 +00:00
Update cheatsheets
This commit is contained in:
41
tldr/quarkus
Normal file
41
tldr/quarkus
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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`
|
||||
Reference in New Issue
Block a user