Skip to content

Commit 37cf899

Browse files
committed
chore: update readme
1 parent 0f18568 commit 37cf899

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ inside/outside docker.
99
## Run from source
1010

1111
1. Make sure you have `Deno` installed on your system
12-
2. Compile to native binary
12+
2. Clone and compile to native binary
1313
```sh
14+
git clone https://github.com/sudheer121/dcmv.git
15+
cd dcmv
1416
deno run compile
1517
```
1618
3. Add to $PATH

deno.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@
1515
"test": "deno test -A tests",
1616
"fmt": "deno fmt",
1717
"lint": "deno lint",
18-
"dev:inspect": "deno run --watch src/main.ts"
18+
"dev:inspect": "deno run --watch src/main.ts",
19+
"compile:win_x86_64": "deno compile -A --target x86_64-pc-windows-msvc --output ./dcmv_win_x86_64.exe src/main.ts",
20+
"compile:mac_arm64": "deno compile -A --target aarch64-apple-darwin --output ./dcmv_mac_arm64 src/main.ts",
21+
"compile:mac_x86_64": "deno compile -A --target x86_64-apple-darwin --output ./dcmv_mac_x86_64 src/main.ts",
22+
"compile:linux_x86_64": "deno compile -A --target x86_64-unknown-linux-gnu --output ./dcmv_linux_x86_64 src/main.ts",
23+
"compile:linux_arm64": "deno compile -A --target aarch64-unknown-linux-gnu --output ./dcmv_linux_arm64 src/main.ts"
1924
},
2025
"imports": {
2126
"@std/assert": "jsr:@std/assert@1",

0 commit comments

Comments
 (0)