summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2022-04-05 14:02:45 +0300
committerDaniil Baturin <daniil@baturin.org>2022-04-05 14:02:45 +0300
commitaa750dcfbd90fa6b8d501ea4df8a0353edda5364 (patch)
tree4e61d61441217d95008f7143bd42a26d8bfc7826
parente625146762b16d85c71209029e19a26d1f42f8be (diff)
downloaduncron-aa750dcfbd90fa6b8d501ea4df8a0353edda5364.tar.gz
uncron-aa750dcfbd90fa6b8d501ea4df8a0353edda5364.zip
Small improvements to the README
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index b09b013..fb73121 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# uncron
-Uncron is a simple job queue service that reds command from a UNIX domain socket
+Uncron is a simple job queue service that reads command from a UNIX domain socket
and executes them sequentially.
Its goal is to serve as an intermediate layer for tools that don't implement locking
@@ -18,11 +18,11 @@ OPAM is capable of installing the OCaml compiler itself and it will be
opam init
# Install dependencies
-opam install ocamlfind lwt lwt_ppx logs containers
+opam install lwt logs containers
# Build uncron
-cd src/
-make
+dune build
+
```
Then you can copy the `uncron` executable to somewehre in the `$PATH`.