Skip to content

Commit ba6f6c5

Browse files
authored
docs: document Makefile build and venv usage (#291)
1 parent 220fe09 commit ba6f6c5

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,20 @@ rustup default nightly
2626
Build with `cargo`:
2727

2828
```sh
29-
cargo build --release
29+
cargo build --release
3030
```
3131

32-
Your built executable will be located in `./target/release/aw-server-rust`
32+
You can also build with make, which will build the web assets as well:
33+
34+
```
35+
make build
36+
```
37+
38+
Your built executable will be located in `./target/release/aw-server-rust`. If you want to use it with a development version of `aw-qt` you'll want to copy this binary into your `venv`:
39+
40+
```shell
41+
cp target/release/aw-server ../venv/bin/aw-server-rust
42+
```
3343

3444

3545
### How to run

0 commit comments

Comments
 (0)