Add initial .gitignore and README.md

This commit is contained in:
Daniel Lynn 2024-03-15 12:25:50 -05:00
commit 32fb1d70ef
Signed by: daniel
GPG Key ID: 28496A140E180A9D
2 changed files with 9 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# Bevy Quick Start Template
This template is based on the [Quick Start instructions](https://bevyengine.org/learn/quick-start/getting-started/setup) for the [Bevy Game Engine](https://bevyengine.org). The aim of this template is to follow the Quick Start guide as closely as possible and implement these select features:
* Add `bevy` as a dependency to [Cargo.toml](Cargo.toml)
* Add developer compiler performance optimizations to [Cargo.toml](Cargo.toml)
* Use the `nightly` rust compiler in [rust-toolchain.toml](rust-toolchain.toml)
* Use `lld` for linking and enable fast compiles in [.cargo/config.toml](.cargo/config.toml)