From c083e594571244355ee54a8e5113e8c1767fa18c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=84=A0=EC=9A=B0?= Date: Thu, 12 Dec 2024 13:47:14 +0900 Subject: [PATCH 1/2] Enhance README.md --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 151699975..ae88c937e 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Install `limbo` with: -``` +```shell curl --proto '=https' --tlsv1.2 -LsSf \ https://github.com/penberg/limbo/releases/latest/download/limbo-installer.sh | sh ``` @@ -96,6 +96,12 @@ print(res.fetchone()) ## Developing +Build `limbo`: + +```shell +cargo run --package limbo --bin limbo database.db +``` + Run tests: ```console From 8e6184c932847270e6e6f70f004160992efb65be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=84=A0=EC=9A=B0?= Date: Thu, 12 Dec 2024 16:05:23 +0900 Subject: [PATCH 2/2] Enhance README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ae88c937e..bb62a6288 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ print(res.fetchone()) ## Developing -Build `limbo`: +Build and run `limbo` cli: ```shell cargo run --package limbo --bin limbo database.db