Skip to content

coq-concurrency/pluto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.