A dead simple RSS reader written in OCaml.
This project is written in OCaml, and thus it's recommended to use the Dune build system to build the project.
Assuming you have the OCaml tool chain (including Dune and opam) installed, you can setup an environment and install all the project dependencies with the following:
opam switch create .
At this point you should have a local switch (OCaml's term for environment)
setup in the ./_opam
directory.
You can then build the project with:
dune build
Which will output the rss_reader
binary at
./_build/install/default/bin/rss_reader
.
To start the web server, run:
dune exec rss_reader web-server