# Alma
Alma is a Bevy application scaffold targeting Bevy 0.18.1.
## Development
For a faster Bevy edit loop, run with the `dev` feature:
```sh
cargo run --features dev
```
This enables Bevy dynamic linking for faster rebuilds and the file watcher for
asset hot reload. Rust code still needs the app process to restart after a
compile. To do that automatically, install `cargo-watch` once:
```sh
cargo install cargo-watch
```
Then run:
```sh
cargo watch -x "run --features dev"
```
Now source changes rebuild and relaunch the app for you. Asset changes under
`assets/` can reload inside the running app when Bevy has loaded those assets.