this repo has no description
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add some instructions on how to run the MVP

+20
+20
README.md
··· 20 20 - 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). 21 21 22 22 - Try cloning over https and pushing over SSH. 23 + 24 + ### MVP 25 + 26 + Run the server with: 27 + 28 + ``` 29 + $ dune exec -- mvp/ocaml/server/server.exe --capnp-secret-key-file server.pem --capnp-listen-address tcp:127.0.0.1:1234 30 + ``` 31 + 32 + Run the client (in another terminal): 33 + 34 + ``` 35 + $ export BELLAIRS_CAP=storage.cap # this is located on the same dir as where the server has started 36 + $ dune exec -- mvp/ocaml/client/client.exe read foo 37 + foo: "" 38 + $ dune exec -- mvp/ocaml/client/client.exe write foo 'hello bellairs!' 39 + 9 bytes successfully written into foo. 40 + $ dune exec -- mvp/ocaml/client/client.exe read foo 41 + foo: "hello bar" 42 + ```