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
Copy file name to clipboardexpand all lines: README.md
+43-8
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,8 @@ document store, without any sharding features
13
13
On the other hand, if your use-case leverages MongoDB as a distributed database, then unfortunately this project might
14
14
not be for you. At least right now supporting multi-sharding and scale-out deployments is not part of the roadmap.
15
15
16
+

17
+
16
18
## Current status
17
19
18
20
The project was heavily inspired by [FerretDB](https://ferretdb.io) and is on its early days. The main difference is that
@@ -26,23 +28,20 @@ You can check it out here: [mongodb-language-model-rust](https://github.com/fcou
26
28
At this moment, it's being developed as a personal project, but contributors are highly welcomed. If that something you'd
27
29
be interested on, be more than welcome to contact me.
28
30
31
+
## Online demo
32
+
33
+
There's an online demo of the Web Interface live at https://demo.oxidedb.com/.
34
+
29
35
## Quickstart
30
36
31
37
Download the [latest binary](https://github.com/fcoury/oxide/releases/latest) and run it. You will need to point it to a running PostgreSQL for Oxide to use as its backend.
32
38
33
39
```
34
-
> $ ./oxide
35
-
[2022-07-13T02:56:15Z ERROR oxide] No PostgreSQL URL specified.
36
-
Use --postgres-url <url> or env var DATABASE_URL to set the connection URL and try again.
[2022-07-13T02:57:46Z INFO oxide::server] Connecting to PostgreSQL database...
41
+
[2022-07-13T02:57:46Z INFO oxide::server] Connecting to postgres://*****:*****@localhost:5432/test...
41
42
[2022-07-13T02:57:46Z INFO oxide::server] OxideDB listening on 127.0.0.1:27017...
42
43
```
43
44
44
-
You can also set the `DATABASE_URL` environment variable or even use a `.env` file.
45
-
46
45
And with the database configuration set, you can use any [MongoDB](https://www.mongodb.com) client to connect to OxideDB, like [mongosh](https://www.mongodb.com/docs/mongodb-shell/):
0 commit comments