We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bbca97 commit 80ffdf7Copy full SHA for 80ffdf7
1 file changed
README.md
@@ -29,9 +29,30 @@ cd ui
29
dx serve --platform desktop
30
```
31
32
+**Build the CLI:**
33
+
34
+With Cargo:
35
+```bash
36
+cd cli
37
+cargo build --release
38
+./target/release/datum-connect --help
39
+```
40
41
+With Nix:
42
43
+nix build .#cli
44
+./result/bin/datum-connect --help
45
46
47
**Run the CLI:**
48
49
50
```bash
51
cd cli
-cargo run -- --help
52
+cargo run -- tunnel --help
53
54
55
56
57
+nix run .#cli -- tunnel --help
58
0 commit comments