CLI
neon new
Initialize a new Neon project in a new directory. For example, running neon new foobar
will create a new directory called foobar
and will add all the necessary neon boilerplate inside the directory.
neon build
Create a dev (unoptimized) build with neon. Similar to cargo build
.
neon build --release
Create a release build with neon. Similar to cargo build --release
.
neon clean
Clean the previous builds of neon. Similar to cargo clean
.
neon version
Get the current version of neon-cli
.
neon help
List all the commands of neon
.