Files
helidon/HELIDON-CLI.md
Romain Grecourt 929c4c6874 Remove hardcoded width on the pictures displayed by markdown files. (#2095)
Update etc/images/Primary_logo_blue.png to have the natural width be 600px
2020-06-24 20:15:36 -07:00

855 B

Helidon CLI

The Helidon CLI lets you easily create a Helidon project by picking from a set of archetypes.

It also supports a developer loop that performs continuous compilation and application restart, so you can easily iterate over source code changes.

Install

MacOS:

curl -O https://helidon.io/cli/latest/darwin/helidon
chmod +x ./helidon
sudo mv ./helidon /usr/local/bin/

Linux:

curl -O https://helidon.io/cli/latest/linux/helidon
chmod +x ./helidon
sudo mv ./helidon /usr/local/bin/

Windows builds to come.

Create a New Project

helidon init

Then answer the questions.

Developer Loop

cd myproject
helidon dev

As you make source code changes the project will automatically recompile and restart your application.

Demo