From 2e6b79c454a7b9d17035752323f37ee95ece974d Mon Sep 17 00:00:00 2001 From: Ukendio Date: Sun, 19 May 2024 04:07:54 +0200 Subject: [PATCH] Initial commit --- docs/tutorials/quick-start/getting-started.md | 20 +++++++++++++++++++ docs/tutorials/quick-start/installing-jecs.md | 6 ++++++ 2 files changed, 26 insertions(+) create mode 100644 docs/tutorials/quick-start/getting-started.md create mode 100644 docs/tutorials/quick-start/installing-jecs.md diff --git a/docs/tutorials/quick-start/getting-started.md b/docs/tutorials/quick-start/getting-started.md new file mode 100644 index 0000000..d7eeb65 --- /dev/null +++ b/docs/tutorials/quick-start/getting-started.md @@ -0,0 +1,20 @@ +# Getting Started +This section will help you get started on your Bevy journey as quickly as possible. It will walk you through setting up your development environment and writing a simple Bevy app. + +This section will provide a walk through setting up your development environment and a quick overview of the different features and concepts in Jecs with short examples. + +## Installing Jecs + +To use Jecs, you will need to add the library to your project's source folder. + +## Installing as standalone +Head over to Jecs' 'Releases' page. + +## Installing with Wally +Jecs is available as a package on [wally.run](https://wally.run/package/ukendio/jecs) + +Add it to your project's Wally.toml like this: +```toml +[dependencies] +jecs = "0.1.0" # Make sure this is the latest version +``` \ No newline at end of file diff --git a/docs/tutorials/quick-start/installing-jecs.md b/docs/tutorials/quick-start/installing-jecs.md new file mode 100644 index 0000000..766c7e3 --- /dev/null +++ b/docs/tutorials/quick-start/installing-jecs.md @@ -0,0 +1,6 @@ +# Installing Jecs + +To use Jecs, you will need to add the library to your project's source folder. + +## Installing with Wally +Navigate over to the Wally \ No newline at end of file