Skip to content

Commit 5747d55

Browse files
committed
Update the install instructions
1 parent cd58afe commit 5747d55

File tree

1 file changed

+38
-35
lines changed

1 file changed

+38
-35
lines changed

README.md

+38-35
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,39 @@
11
# ChickBlog
2-
A blog engine written and proven in [Coq](https://coq.inria.fr/).
2+
> A blog engine written and proven in [Coq](https://coq.inria.fr/).
33
44
This is a demo blog engine where a user can login (no passwords), add, edit or delete posts. The code is written mostly in Coq, compiled to OCaml and linked to the [CoHTTP](https://github.com/mirage/ocaml-cohttp) library to handle the HTTP protocol.
55

66
The aim of this project is to demonstrate that applications with I/Os can be written and specified naturally using the (new) concept of [symbolic simulations in Coq](http://coq-blog.clarus.me/checking-concurrent-programs-with-symbolic-simulations.html).
77

8-
## Run
9-
Add the Coq repositories with [OPAM](https://opam.ocaml.org/):
10-
11-
opam repo add coq-released https://coq.inria.fr/opam/released
12-
13-
Install the dependencies:
14-
15-
opam install coq-list-string coq-error-handlers coq-function-ninjas coq-moment
16-
opam install lwt cohttp-lwt-unix
17-
18-
Compile:
19-
20-
./configure.sh && make
21-
cd extraction/
22-
make
23-
24-
Run on [localhost:8008](http://localhost:8008/):
25-
26-
./chickBlog.native
8+
## Install
9+
Add the Coq repository with [opam](https://opam.ocaml.org/) if not already done:
10+
```
11+
opam repo add coq-released https://coq.inria.fr/opam/released
12+
```
13+
Install the package:
14+
```
15+
opam install coq-chick-blog
16+
```
17+
Run:
18+
```
19+
coq-chick-blog
20+
```
21+
You can now open [localhost:8008](http://localhost:8008/) to navigate the blog. Posts will be saved in the current folder. There is not password for this demo project.
22+
23+
To build the project by hand for development, read the build instructions from the `coq-chick-blog.opam` file.
2724

2825
## Specification
2926
The blog is defined in `Main.v` as the function:
30-
31-
Definition server (path : Path.t) (cookies : Cookies.t) : C.t Response.t.
27+
```coq
28+
Definition server (path : Path.t) (cookies : Cookies.t) : C.t Response.t.
29+
```
3230

3331
It handles an HTTP request and generate an answer using system calls to the file system. The type `C.t A` represents a computation doing I/O operations:
34-
35-
Inductive t (A : Type) : Type :=
36-
| Ret : forall (x : A), t A
37-
| Call : forall (command : Command.t), (Command.answer command -> t A) -> t A.
32+
```coq
33+
Inductive t (A : Type) : Type :=
34+
| Ret : forall (x : A), t A
35+
| Call : forall (command : Command.t), (Command.answer command -> t A) -> t A.
36+
```
3837

3938
A computation can either:
4039

@@ -47,17 +46,21 @@ The purity of Coq ensures that each request is answered exactly once in finite t
4746
A scenario is a set of runs of the server. A type-checking scenario shows that the server behaves as expected in a certain use case. For example, we check that when we create, edit and view a post we get the same result as what we entered. You can think of a scenario as a unit test with universally quantified variables.
4847

4948
Here is a simple check of the execution of the index page:
50-
51-
(** The index page when the list of posts is available. *)
52-
Definition index_ok (cookies : Cookies.t) (post_headers : list Post.Header.t)
53-
: Run.t (Main.server Path.Index cookies).
54-
(* The handler asks the list of available posts. We return `post_headers`. *)
55-
apply (Call (Command.ListPosts _ ) (Some post_headers)).
56-
(* The handler terminates without other system calls. *)
57-
apply (Ret (Response.Index (Cookies.is_logged cookies) post_headers)).
58-
Defined.
49+
```coq
50+
(** The index page when the list of posts is available. *)
51+
Definition index_ok (cookies : Cookies.t) (post_headers : list Post.Header.t)
52+
: Run.t (Main.server Path.Index cookies).
53+
(* The handler asks the list of available posts. We return `post_headers`. *)
54+
apply (Call (Command.ListPosts _ ) (Some post_headers)).
55+
(* The handler terminates without other system calls. *)
56+
apply (Ret (Response.Index (Cookies.is_logged cookies) post_headers)).
57+
Defined.
58+
```
5959

6060
Given any `cookies` and `post_headers`, we execute the server handler on the page `Request.Path.Index`. The handler does exactly one system call, to which we answer `Some post_headers`, playing the role of the system. The final response of the server is then `Response.Public.Index post_headers`. Note that we do not need to execute `index_ok` on every instances of `cookies` and `post_headers`: since the type-system of Coq is supposed sound, it is enough to type-check `index_ok`.
6161

6262
### Privacy
6363
We check that, for any runs of a program, an unauthenticated user cannot access private pages (like edit) or modify the file system with system calls.
64+
65+
## License
66+
All the code is under the open-source MIT license.

0 commit comments

Comments
 (0)