On a quest for agency in Bellairs

Add some instructions on how to run the MVP

Changed files
+20
+20
README.md
···
- Try `ssh git.recoil.org` to ensure that you have a login and you get a message saying that this is a knot and that it doesnt like interactive mode (instead of access denied).
- Try cloning over https and pushing over SSH.
+
+
### MVP
+
+
Run the server with:
+
+
```
+
$ dune exec -- mvp/ocaml/server/server.exe --capnp-secret-key-file server.pem --capnp-listen-address tcp:127.0.0.1:1234
+
```
+
+
Run the client (in another terminal):
+
+
```
+
$ export BELLAIRS_CAP=storage.cap # this is located on the same dir as where the server has started
+
$ dune exec -- mvp/ocaml/client/client.exe read foo
+
foo: ""
+
$ dune exec -- mvp/ocaml/client/client.exe write foo 'hello bellairs!'
+
9 bytes successfully written into foo.
+
$ dune exec -- mvp/ocaml/client/client.exe read foo
+
foo: "hello bar"
+
```