From 10558b71a0e5b5adc012f8d8f133645c396954e9 Mon Sep 17 00:00:00 2001 From: ok300 <106775972+ok300@users.noreply.github.com> Date: Thu, 21 Mar 2024 16:00:24 +0100 Subject: [PATCH] docs: add mention of necessary sqlite3 env setup --- lib/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/README.md b/lib/README.md index 45b030f97..5a1d6e76d 100644 --- a/lib/README.md +++ b/lib/README.md @@ -1,4 +1,13 @@ # breez-sdk-liquid +## Prerequisites + +Your system must have the sqlite3 development files installed: + +```bash +# On Debian +sudo apt install libsqlite3-dev +``` + ## Tests In order to run tests, you can execute `cargo test -- --nocapture --test-threads 1`. This is due to the fact that currently tests require some degree of interaction (e.g. adding the funding invoice) in order to work, and thus should be run with a single thread (sequentially).