Skip to content

Commit

Permalink
docs: add mention of necessary sqlite3 env setup (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
ok300 authored Mar 21, 2024
1 parent 03c2c39 commit 3516716
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/README.md
Original file line number Diff line number Diff line change
@@ -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).

0 comments on commit 3516716

Please sign in to comment.