From a450b5cd3915fc35b3f1792d238797d89931f9f1 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Sat, 1 Feb 2025 09:46:21 +0200 Subject: [PATCH] Update README.md --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 86128c35d..645d409e0 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Limbo is an in-process OLTP database engine library that has: ## Getting Started -### CLI +### 💻 Command Line You can install the latest `limbo` release with: @@ -63,7 +63,7 @@ You can also build and run the latest development version with: cargo run ``` -### JavaScript (wip) +### ✨ JavaScript (wip) Installation: @@ -82,7 +82,7 @@ const users = stmt.all(); console.log(users); ``` -### Python (wip) +### 🐍 Python (wip) ```console pip install pylimbo @@ -99,6 +99,10 @@ res = cur.execute("SELECT * FROM users") print(res.fetchone()) ``` +## Contributing + +We'd love to have you contribute to Limbo! Please check out the [contribution guide] to get started. + ## FAQ ### How is Limbo different from libSQL? @@ -116,8 +120,6 @@ This project is licensed under the [MIT license]. ### Contribution -We'd love to have you contribute to Limbo! Please check out the [contribution guide] to get started. - Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Limbo by you, shall be licensed as MIT, without any additional terms or conditions.