This is the first release of the Bevy CLI, a prototype command-line tool that streamlines developing apps using the Bevy game engine! Use the CLI to:
bevy new
: quickly setup a new app from a template, likebevy_new_2d
. Perfect for game jams!- Easily build your app for the web with features like...
bevy run web
: run a local web server to test your app in your browserbevy build web --bundle
: bundle your app and assets into a single folderbuild build web --release
: optionally optimization withwasm-opt
when in release mode
bevy lint
: run the linter if you have it installed, and optionally install it for you if you don't!
You can find the live documentation for this release here. You may also be interested in the changelog.
Warning
This is an unofficial community project, hacked upon by the Bevy CLI working group until it is eventually upstreamed into the main Bevy Engine organization. Pardon our rough edges, and please consider submitting an issue if you run into trouble!
You can install the CLI using:
cargo install --git https://github.com/TheBevyFlock/bevy_cli --tag cli-v0.1.0-alpha.1 --locked bevy_cli
For more information, please see the installation page!