You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unofficial .NET client for [Rqlite](https://rqlite.io).
7
+
Unofficial .NET client for [Rqlite](https://rqlite.io), download [NuGet package](https://nuget.org/packages/rqlite).
8
+
9
+
Documentation (including API explorer) is available [here](https://bfren.github.io/rqlite).
8
10
9
11
## Features
10
12
@@ -20,10 +22,14 @@ Unofficial .NET client for [Rqlite](https://rqlite.io).
20
22
The simplest way to start testing is to use [Docker](https://docker.com):
21
23
22
24
```bash
23
-
docker run -p4001:4001 rqlite/rqlite
25
+
# start rqlite instance using Docker
26
+
$ ./run.sh
27
+
28
+
# in a new terminal
29
+
$ dotnet run --project apps/ReadmeApp/ReadmeApp.csproj
24
30
```
25
31
26
-
Install the [NuGet package](https://nuget.org/packages/rqlite). You can see a functioning example of the code below in the ReadmeApp project of this repository.
32
+
This will execute the code below (taken from ReadmeApp's `Project.cs` file). You can see additional options and code in the ConsoleApp project.
0 commit comments