You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22-3Lines changed: 22 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,17 +23,36 @@ Then point your editor to the downloaded binary.
23
23
24
24
### Building from source
25
25
26
-
To build Expert from source, you need Zig `0.15.2` installed on your system. Later versions will not work.
26
+
Expert can be built in two ways: building a regular release for your own system(a "plain" release), or building
27
+
a "burrito" release that works on multiple systems.
27
28
28
-
Then you can run the following command or follow the instructions in the [Installation Instructions](pages/installation.md):
29
+
To build Expert for your system, run the following command:
29
30
30
31
```sh
31
-
just release-local
32
+
just release
33
+
```
34
+
35
+
You can then point your editor to the `start_expert` executable in the generated release.
36
+
You can also run `start_expert --help` to see available options.
37
+
38
+
> [!IMPORTANT]
39
+
>
40
+
> If your editor doesn't do it automatically, make sure to pass the `--stdio` flag to Expert.
41
+
42
+
To build Expert using burrito, you need Zig `0.15.2` installed on your system.
43
+
Later versions will not work.
44
+
45
+
Then you can run the following command:
46
+
47
+
```sh
48
+
just burrito-local
32
49
```
33
50
34
51
This will build the Expert binary and place it in the `apps/expert/burrito_out` directory. You can then point your
35
52
editor to this binary.
36
53
54
+
You can find more information in the [Installation Instructions](pages/installation.md).
55
+
37
56
## Sponsorship
38
57
39
58
Thank you to our corporate sponsors! Expert is currently in alpha and [we have organized all future work, including the first release, as milestones](https://github.com/elixir-lang/expert/milestones). If you'd like to start sponsoring the project, please read more below.
0 commit comments