Scaffolding

The bevy new command lets you easily scaffold a new Bevy project using a custom template or a minimal template provided by Bevy. Templates are just GitHub repositories and can be specified with the -t flag.

Usage

If the template is omitted, the default minimal template will be chosen.

bevy new my-project

Other built-in templates from TheBevyFlock will be usable via its shortcut form i.e. -t 2d will use the template bevy_new_2d.

bevy new my-project -t 2d

To use a specific template, provide the full GitHub URL:

bevy new my-project -t https://github.com/TheBevyFlock/bevy_new_2d.git