Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Add RUN.md (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy-Gonzalez authored Dec 11, 2022
1 parent a8f20c6 commit 6a46a30
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions RUN.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
To run this project, first `cd` to the folder you want to download the project in.
Make sure you have `git`, `cargo`, and `rustc` installed, and that the following command returns at least `1.65.0`:

```bash
rustc --version
```

After you've done that, clone the repo with:
```bash
git clone https://github.com/ProjEvo/project-evolution.git
```

cd into it:
```bash
cd project-evolution
```

To compile and run the project, run:
```
cargo run --release
```

> Note: `--release` is enabled significant optimizations that made it possible to run at 10x speed on my laptop. Without these optimizations, your mileage may vary.

0 comments on commit 6a46a30

Please sign in to comment.