···2020- 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).
21212222- Try cloning over https and pushing over SSH.
2323+2424+### MVP
2525+2626+Run the server with:
2727+2828+```
2929+$ dune exec -- mvp/ocaml/server/server.exe --capnp-secret-key-file server.pem --capnp-listen-address tcp:127.0.0.1:1234
3030+```
3131+3232+Run the client (in another terminal):
3333+3434+```
3535+$ export BELLAIRS_CAP=storage.cap # this is located on the same dir as where the server has started
3636+$ dune exec -- mvp/ocaml/client/client.exe read foo
3737+foo: ""
3838+$ dune exec -- mvp/ocaml/client/client.exe write foo 'hello bellairs!'
3939+9 bytes successfully written into foo.
4040+$ dune exec -- mvp/ocaml/client/client.exe read foo
4141+foo: "hello bar"
4242+```