diff options
author | Marc Coquand <marc@mccd.space> | 2024-05-17 14:25:52 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-05-17 14:25:52 -0500 |
commit | 0f36dee9ed3225662e551fce165e30867b246656 (patch) | |
tree | 31d0c65bb6374ba4f9fb04c39c413242e202dd82 /README | |
parent | 12c6b55e7c1d53122ca73f2a8d0067d10060f0be (diff) | |
download | stitch-0f36dee9ed3225662e551fce165e30867b246656.tar.gz stitch-0f36dee9ed3225662e551fce165e30867b246656.tar.bz2 stitch-0f36dee9ed3225662e551fce165e30867b246656.zip |
updates
Diffstat (limited to '')
-rw-r--r-- | README | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -82,8 +82,8 @@ _________________ 1.5 DEVELOPMENT ~~~~~~~~~~~~~~~ - To set up the project, easiest way is to just install Nix, direnv and - enable nix flakes. Then to compile: + To set up the project for local development, easiest way is to just install Nix, direnv + and enable nix flakes. Then to compile: dune build @@ -95,9 +95,15 @@ _________________ dune exec -- stitch --help=groff - To prepare for release, run + To prepare for release, we need to statically link the binary, which unless you use a + musl based distro it will not do out of the box. - dune build --profile release + There is a Dockerfile included that prepares the release, use it with podman: + + podman pull docker.io/alpine:edge + podman build . -t stitch:latest + mkdir release + podman run -v ./release:/tmp/build/_build:U stitch:latest Binary will be found in ./_build/default/bin/stitch @@ -110,6 +116,7 @@ _________________ - Support command pipign and hotkeys - Line wrapping - Support URL shortening. + - Better result narrowing 2 KNOWN ISSUES |