Skip to content

Commit

Permalink
Update from-source instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
mufeedali authored Jun 13, 2024
1 parent 302d416 commit 3740f7c
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,17 +63,26 @@ On NixOS, Wordbook can be installed using the Nix package manager as shown above

### From Source

To install, first make sure of the dependencies as listed above.
To install, first make sure of the dependencies as listed above. You can use `just` to make the process easy.

```bash
make setup
make install
just setup
just install
```

Without `just`:
```bash
mkdir -p _build
meson setup . _build
ninja -C _build install
```

For a local build with debugging enabled:

```bash
make setup
make develop
make run
just run
# OR
just setup
just develop-configure
just local-run
```

0 comments on commit 3740f7c

Please sign in to comment.