Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 628 Bytes

README.md

File metadata and controls

25 lines (15 loc) · 628 Bytes

Logo Pluto

A web server written in Coq.

Run with OPAM

Add the Coq repository:

opam repo add coq-released https://coq.inria.fr/opam/released

Install Pluto:

opam install coq-concurrency-pluto

Run it on some html/ folder:

pluto.native 8000 html/

Your website is now available on localhost:8000.

Run with Docker

Add some HTML content to html/, build and run the server:

docker build --tag=pluto .
docker run -ti -p 80:80 pluto

Your website is now available on localhost.