Skip to content

`bevy_cli` - v0.1.0-alpha.1

Latest
Compare
Choose a tag to compare
@BD103 BD103 released this 23 May 12:50
· 43 commits to main since this release
2d12bc0

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, like bevy_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 browser
    • bevy build web --bundle: bundle your app and assets into a single folder
    • build build web --release: optionally optimization with wasm-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!